-
Notifications
You must be signed in to change notification settings - Fork 450
Expand file tree
/
Copy path.eslintrc.json
More file actions
41 lines (41 loc) · 771 Bytes
/
.eslintrc.json
File metadata and controls
41 lines (41 loc) · 771 Bytes
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
32
33
34
35
36
37
38
39
40
41
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "vue-eslint-parser",
"extends": [
"eslint:recommended",
"plugin:vue/recommended" // or 'plugin:vue/base'
],
"parserOptions": {
"parser": "babel-eslint",
"allowImportExportEverywhere": true,
"sourceType": "module",
"codeFrame": false
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"no-console": 0,
"linebreak-styl":0,
"no-unused-vars": ["error", { "vars": "all", "args": "none" }],
"no-mixed-spaces-and-tabs": [0, "smart-tabs"],
"no-useless-escape": 0
}
}