11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
|
|
module.exports = {
|
||
|
|
printWidth: 250,
|
||
|
|
semi: true,
|
||
|
|
vueIndentScriptAndStyle: true,
|
||
|
|
singleQuote: true,
|
||
|
|
trailingComma: 'none',
|
||
|
|
proseWrap: 'never',
|
||
|
|
htmlWhitespaceSensitivity: 'strict',
|
||
|
|
endOfLine: 'auto'
|
||
|
|
};
|