8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
|
|
module.exports = {
|
||
|
|
htmlWhitespaceSensitivity: 'ignore',
|
||
|
|
semi: true,
|
||
|
|
singleQuote: true,
|
||
|
|
vueIndentScriptAndStyle: true,
|
||
|
|
trailingComma: 'none'
|
||
|
|
};
|