File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed 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](http://keepachangelog.com/) for recommendations on how to structure this file. -->
66
7+ ## [ 5.2.1]
8+
9+ - Support for additional configuration file extensions.
10+
711## [ 5.2.0]
812
913- Updated prettier to 2.1.0
Original file line number Diff line number Diff line change 22 "name" : " prettier-vscode" ,
33 "displayName" : " Prettier - Code formatter" ,
44 "description" : " Code formatter using prettier" ,
5- "version" : " 5.2.0 " ,
5+ "version" : " 5.2.1 " ,
66 "publisher" : " esbenp" ,
77 "author" : " Prettier <@prettiercode>" ,
88 "galleryBanner" : {
Original file line number Diff line number Diff line change @@ -31,11 +31,15 @@ interface ISelectors {
3131const PRETTIER_CONFIG_FILES = [
3232 ".prettierrc" ,
3333 ".prettierrc.json" ,
34+ ".prettierrc.json5" ,
3435 ".prettierrc.yaml" ,
3536 ".prettierrc.yml" ,
37+ ".prettierrc.toml" ,
3638 ".prettierrc.js" ,
39+ ".prettierrc.cjs" ,
3740 "package.json" ,
3841 "prettier.config.js" ,
42+ "prettier.config.cjs" ,
3943 ".editorconfig" ,
4044] ;
4145
You can’t perform that action at this time.
0 commit comments