mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-12-27 07:59:08 +08:00
15 lines
381 B
JavaScript
15 lines
381 B
JavaScript
module.exports = {
|
|
parserOptions: {
|
|
parser: "@typescript-eslint/parser",
|
|
sourceType: "module"
|
|
},
|
|
extends: ["plugin:vue/vue3-recommended"],
|
|
rules: {
|
|
"vue/max-attributes-per-line": "off",
|
|
"vue/multi-word-component-names": "off",
|
|
"vue/html-self-closing": "off",
|
|
"vue/singleline-html-element-content-newline": "off",
|
|
"no-unused-vars": "warn"
|
|
}
|
|
};
|