19 lines
387 B
JavaScript
19 lines
387 B
JavaScript
|
module.exports = {
|
||
|
arrowParens: 'avoid',
|
||
|
bracketSpacing: false,
|
||
|
endOfLine: 'lf',
|
||
|
htmlWhitespaceSensitivity: 'css',
|
||
|
insertPragma: false,
|
||
|
jsxBracketSameLine: false,
|
||
|
jsxSingleQuote: false,
|
||
|
printWidth: 80,
|
||
|
proseWrap: 'always',
|
||
|
quoteProps: 'as-needed',
|
||
|
requirePragma: false,
|
||
|
semi: false,
|
||
|
singleQuote: true,
|
||
|
tabWidth: 2,
|
||
|
trailingComma: 'all',
|
||
|
useTabs: false,
|
||
|
}
|