11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
|
module.exports = {
|
||
|
bracketSpacing: false,
|
||
|
jsxBracketSameLine: true,
|
||
|
singleQuote: true,
|
||
|
tabWidth: 4,
|
||
|
trailingComma: 'none',
|
||
|
printWidth: 135,
|
||
|
semi: true,
|
||
|
jsxSingleQuote: true
|
||
|
};
|