Skip to content

Instantly share code, notes, and snippets.

@justerror
Last active June 27, 2021 18:33
Show Gist options
  • Select an option

  • Save justerror/720bb755f5463033318e29dafcaaf55d to your computer and use it in GitHub Desktop.

Select an option

Save justerror/720bb755f5463033318e29dafcaaf55d to your computer and use it in GitHub Desktop.
Configuration file for Prettier
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf",
"overrides": [
{
"files": ["*.css", "*.scss", "*.less"],
"options": {
"singleQuote": false
}
}
]
}
@justerror
Copy link
Author

Ignore html files:

create file .prettierignore with content *.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment