11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
|
module.exports = {
|
||
|
bracketSpacing: true,
|
||
|
jsxBracketSameLine: true,
|
||
|
singleQuote: true,
|
||
|
jsxSingleQuote: true,
|
||
|
trailingComma: 'none',
|
||
|
printWidth: 130,
|
||
|
useTabs: true,
|
||
|
arrowParens: 'avoid'
|
||
|
};
|