23 lines
435 B
JavaScript
23 lines
435 B
JavaScript
|
|
module.exports = {
|
|
printWidth: 74,
|
|
tabWidth: 2,
|
|
semi: false,
|
|
arrowParens: 'avoid',
|
|
singleQuote: true,
|
|
trailingComma: 'none',
|
|
bracketSpacing: true,
|
|
htmlWhitespaceSensitivity: 'ignore',
|
|
endOfLine: 'auto',
|
|
insertPragma: false,
|
|
proseWrap: 'preserve',
|
|
'objectCurly-newline': [
|
|
'error',
|
|
{
|
|
multiline: true
|
|
}
|
|
],
|
|
'array-bracket-newline': ['error', 'consistent'],
|
|
vueIndentScriptAndStyle: true
|
|
}
|