since eslint can auto fix semicolon, standardize all end with semicolon

This commit is contained in:
LouisLam
2021-09-16 22:57:34 +08:00
parent 579e07ded4
commit 9b8f01cfc6
3 changed files with 8 additions and 8 deletions

View File

@@ -33,7 +33,7 @@ module.exports = {
},
],
quotes: ["warn", "double"],
//semi: ['off', 'never'],
semi: "warn",
"vue/html-indent": ["warn", 4], // default: 2
"vue/max-attributes-per-line": "off",
"vue/singleline-html-element-content-newline": "off",
@@ -92,4 +92,4 @@ module.exports = {
}
}
]
}
};