forked from Kurounin/Pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
40 lines (40 loc) · 799 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
32
33
34
35
36
37
38
39
40
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"settings": {
"ecmascript": 6,
"import/ignore": ["meteor"],
"import/core-modules": ["meteor"]
},
"plugins": [
"import",
"meteor"
],
"extends": [
"airbnb/base",
"plugin:meteor/recommended"
],
"globals": {
"$": false,
"expect": false,
"Meteor": false
},
"rules": {
"strict": 0,
"import/no-unresolved": [2, { commonjs: true, amd: true, ignore: ["^meteor/"] }],
"import/no-extraneous-dependencies": 0,
"import/named": 2,
"import/namespace": 2,
"import/export": 2,
"new-cap": 0,
"camelcase": 0,
"comma-dangle": 0,
"consistent-return": 0,
"no-console": 0,
"no-underscore-dangle": 0,
"no-return-assign": 0
}
}