Skip to content

Instantly share code, notes, and snippets.

@biased-badger
Last active January 28, 2021 11:36
Show Gist options
  • Save biased-badger/d105e04fcb17370678db3517e0a28715 to your computer and use it in GitHub Desktop.
Save biased-badger/d105e04fcb17370678db3517e0a28715 to your computer and use it in GitHub Desktop.
WebStorm config with Prettier
# 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
package-lock.json
yarn.lock
/node_modules
/dist
.prettierrc
.prettierignore
.editorconfig
.dockerignore
Dockerfile
nginx.conf
mime.types
*.ttf
*.sh
*.sql
{
"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