joyent-portal/.prettierrc
Sérgio Ramos 23ddc68ade style: global and simpler prettier config
this also removes precommit scripts because they were cumbersome
2018-03-15 19:02:55 +00:00

32 lines
531 B
Plaintext

{
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"overrides": [
{
"files": [
".prettierrc",
".eslintrc",
".babelrc",
".tern-project",
".stylelintrc",
".lighthouserc"
],
"options": {
"parser": "json"
}
},
{
"files": ["package.json"],
"options": {
"printWidth": 180
}
}
]
}