neko/.eslintrc

20 lines
439 B
Plaintext
Raw Normal View History

2020-11-05 23:56:26 +13:00
{
"root": true,
"env": {
"node": true
},
"extends": ["plugin:vue/essential", "@vue/prettier", "@vue/typescript"],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {
2022-05-15 05:41:34 +12:00
"vue/multi-word-component-names": "off",
2020-11-05 23:56:26 +13:00
"vue/valid-v-for": "off",
"no-case-declarations": "off",
"no-dupe-class-members": "off",
"no-console": "off",
"no-empty": "off"
},
"ignorePatterns": ["**/*.js"]
2020-11-05 23:56:26 +13:00
}