feishin/.prettierrc

23 lines
505 B
Text
Raw Normal View History

2022-12-19 15:59:14 -08:00
{
2023-07-01 19:06:57 -07:00
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"useTabs": false,
"overrides": [
{
"files": ["**/*.css", "**/*.scss", "**/*.html"],
"options": {
"singleQuote": true
2023-07-01 19:06:57 -07:00
}
}
],
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"proseWrap": "never",
"htmlWhitespaceSensitivity": "strict",
"endOfLine": "lf",
"singleAttributePerLine": true
2022-12-19 15:59:14 -08:00
}