-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
31 lines (31 loc) · 894 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"root": true,
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": ["plugin:vue/recommended", "prettier/@typescript-eslint", "plugin:prettier/recommended"],
"parserOptions": {
"parser": "@typescript-eslint/parser",
"project": "./tsconfig.json",
"extraFileExtensions": [".vue"],
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["vue", "babel", "@typescript-eslint"],
"rules": {
"no-useless-escape": "off",
"no-prototype-builtins": "off",
"no-console": "error",
"vue/max-attributes-per-line": "off",
"vue/require-default-prop": "off",
"vue/html-self-closing": "off",
"vue/require-prop-types": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/no-v-model-argument": "off",
"vue/no-v-html": "off",
"prettier/prettier": "off",
"valid-template-root": "off"
}
}