feishin/.prettierrc

23 lines
506 B
Plaintext
Raw Normal View History

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