14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
|
module.exports = {
|
||
|
arrowParens: 'always',
|
||
|
bracketSpacing: true,
|
||
|
endOfLine: 'lf',
|
||
|
jsxBracketSameLine: false,
|
||
|
printWidth: 100,
|
||
|
proseWrap: 'always',
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
tabWidth: 2,
|
||
|
trailingComma: 'none',
|
||
|
useTabs: false
|
||
|
};
|