Files
jcutmirror/.prettierrc.js
2024-02-14 23:39:12 +08:00

16 lines
318 B
JavaScript

module.exports = {
// from google/gts
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid",
// other rules
"tabWidth": 2,
"useTabs": false,
"jsxSingleQuote": false,
"semi": true,
"endOfLine": "lf",
"quoteProps": "consistent",
"bracketSpacing": true,
}