mirror of
https://github.com/Kxsso/jcutmirror.git
synced 2026-02-09 01:16:58 +08:00
16 lines
318 B
JavaScript
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,
|
|
}
|