Last active
October 27, 2021 08:52
-
-
Save mojoaxel/c1d2d478c6967a3accf6ee9ed5084bed to your computer and use it in GitHub Desktop.
prettier.io settings for fullstax projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"singleQuote": true, | |
"useTabs": true, | |
"semi": true, | |
"printWidth": 100, | |
"trailingComma": "none", | |
"arrowParens": "avoid" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
"nrwl.angular-console", | |
"angular.ng-template", | |
"ms-vscode.vscode-typescript-tslint-plugin", | |
"esbenp.prettier-vscode", | |
"mtxr.sqltools", | |
"doi.fileHeaderComment" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": false, | |
"editor.detectIndentation": true, | |
"editor.insertSpaces": false, | |
"editor.tabSize": 2, | |
"editor.wordWrapColumn": 100, | |
"markdownlint.config": { | |
"line-length": false, | |
"no-hard-tabs": false | |
}, | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[handlebars]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[sql]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "mtxr.sqltools" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment