mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-09 23:54:04 +00:00
17 lines
379 B
JavaScript
17 lines
379 B
JavaScript
module.exports = {
|
|
"arrowParens": "avoid",
|
|
"bracketSpacing": false,
|
|
"htmlWhitespaceSensitivity": "css",
|
|
"insertPragma": false,
|
|
"bracketSameLine": true,
|
|
"jsxSingleQuote": true,
|
|
"printWidth": 120,
|
|
"proseWrap": "preserve",
|
|
"quoteProps": "as-needed",
|
|
"requirePragma": false,
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "none",
|
|
"useTabs": false
|
|
}
|