@maddimathon/build-utilities
Version:
Opinionated utilities for easy build systems in npm projects.
26 lines (25 loc) • 755 B
JSON
{
"bracketSameLine": false,
"bracketSpacing": true,
"experimentalOperatorPosition": "start",
"experimentalTernaries": true,
"htmlWhitespaceSensitivity": "strict",
"jsxSingleQuote": true,
"printWidth": 80,
"proseWrap": "preserve",
"semi": true,
"singleAttributePerLine": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false,
"overrides": [
{ "files": "*.css", "options": { "singleQuote": false } },
{
"files": "*.html",
"options": { "printWidth": 10000, "singleQuote": false }
},
{ "files": "*.md", "options": { "printWidth": 10000 } },
{ "files": "*.mdx", "options": { "printWidth": 10000 } }
]
}