18 lines
370 B
JavaScript
18 lines
370 B
JavaScript
|
module.exports = {
|
||
|
arrowParens: 'avoid',
|
||
|
bracketSpacing: true,
|
||
|
htmlWhitespaceSensitivity: 'css',
|
||
|
insertPragma: false,
|
||
|
jsxBracketSameLine: false,
|
||
|
jsxSingleQuote: false,
|
||
|
printWidth: 120,
|
||
|
proseWrap: 'preserve',
|
||
|
quoteProps: 'as-needed',
|
||
|
requirePragma: false,
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
tabWidth: 2,
|
||
|
trailingComma: 'none',
|
||
|
useTabs: false
|
||
|
};
|