13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
module.exports = {
|
|
printWidth: 120,
|
|
tabWidth: 4,
|
|
useTabs: false,
|
|
singleQuote: true,
|
|
semi: true,
|
|
trailingComma: 'none',
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: false,
|
|
arrowParens: 'avoid',
|
|
htmlWhitespaceSensitivity: 'ignore'
|
|
};
|