File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to the "prettier-vscode" extension will be documented in thi
44
55<!-- Check [Keep a Changelog](https://keepachangelog.com/) for recommendations on how to structure this file. -->
66
7+ ## [ Unreleased]
8+
9+ - Add tilde expansion to paths on Linux platforms
10+
711## [ 11.0.0]
812
913- [ BREAKING CHANGE] Prevent ` .editorconfig ` from satisfying the ` requireConfig ` setting (#2708 ) - Thanks to [ @redoPop ] ( https://github.com/redoPop )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export function getWorkspaceRelativePath(
1010) {
1111 // In case the user wants to use ~/.prettierrc on Mac
1212 if (
13- process . platform === "darwin" &&
13+ ( process . platform === "darwin" || process . platform === "linux" ) &&
1414 pathToResolve . indexOf ( "~" ) === 0 &&
1515 os . homedir ( )
1616 ) {
You can’t perform that action at this time.
0 commit comments