Last active
January 28, 2021 11:36
-
-
Save biased-badger/d105e04fcb17370678db3517e0a28715 to your computer and use it in GitHub Desktop.
WebStorm config with Prettier
This file contains hidden or 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 configuration, see https://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[*.ts] | |
quote_type = single | |
[*.md] | |
max_line_length = off | |
trim_trailing_whitespace = false |
This file contains hidden or 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
package-lock.json | |
yarn.lock | |
/node_modules | |
/dist | |
.prettierrc | |
.prettierignore | |
.editorconfig | |
.dockerignore | |
Dockerfile | |
nginx.conf | |
mime.types | |
*.ttf | |
*.sh | |
*.sql |
This file contains hidden or 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
{ | |
"tabWidth": 2, | |
"useTabs": false, | |
"bracketSpacing": true, | |
"semi": true, | |
"singleQuote": true, | |
"quoteProps": "consistent", | |
"trailingComma": "es5", | |
"printWidth": 120 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment