17 lines
353 B
JavaScript
17 lines
353 B
JavaScript
module.exports = {
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
quoteProps: 'as-needed',
|
|
jsxSingleQuote: false,
|
|
trailingComma: 'es5',
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: false,
|
|
arrowParens: 'avoid',
|
|
htmlWhitespaceSensitivity: 'ignore',
|
|
vueIndentScriptAndStyle: false,
|
|
endOfLine: 'lf',
|
|
};
|