13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
module.exports = {
|
|
semi: false,
|
|
singleQuote: true,
|
|
printWidth: 150,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
trailingComma: 'none',
|
|
bracketSpacing: true,
|
|
arrowParens: 'avoid',
|
|
endOfLine: 'lf',
|
|
vueIndentScriptAndStyle: false
|
|
}
|