13 lines
253 B
JavaScript
13 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
|
|
};
|