Skip to content

Instantly share code, notes, and snippets.

@xmalinov
Last active June 24, 2019 08:00
Show Gist options
  • Save xmalinov/bb28de254ac8ec8fa45136b084412898 to your computer and use it in GitHub Desktop.
Save xmalinov/bb28de254ac8ec8fa45136b084412898 to your computer and use it in GitHub Desktop.
Prettier settings
# http://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
[*.js]
indent_size = 2
indent_style = space
max_line_length = 80
[*.{css,scss,sass,json,html,pug}]
indent_size = 2
indent_style = space
[*.php]
indent_size = 4
indent_style = space
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
[COMMIT_EDITMSG]
max_line_length = 0
{
"printWidth": 80,
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"useTabs": false,
"arrowParens": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment