mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-05 07:03:01 +08:00
19 lines
319 B
JavaScript
19 lines
319 B
JavaScript
module.exports = {
|
|
printWidth: 140,
|
|
semi: true,
|
|
vueIndentScriptAndStyle: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
proseWrap: 'never',
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
endOfLine: 'auto',
|
|
overrides: [
|
|
{
|
|
files: '.*rc',
|
|
options: {
|
|
parser: 'json',
|
|
},
|
|
},
|
|
],
|
|
};
|