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