Skip to content

Instantly share code, notes, and snippets.

@celsofabri
Created September 23, 2020 20:46
Show Gist options
  • Save celsofabri/ef661851e31b5e4698c225a764da8924 to your computer and use it in GitHub Desktop.
Save celsofabri/ef661851e31b5e4698c225a764da8924 to your computer and use it in GitHub Desktop.
Preferences Prettier Sublime
{
"auto_format_on_save": true,
"auto_format_on_save_excludes": [
"/node_modules/",
"*.json",
"*.md",
"*.html"
],
"prettier_options": {
"autoformat": true,
"extensions": ["js", "jsx", "css", "scss", "sass", "php"],
"printWidth": 100,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment