forked from JithinKS97/dynamic-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
44 lines (44 loc) · 1.16 KB
/
.eslintrc.json
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
42
43
44
{
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true,
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true,
"meteor": true
},
"globals": {
"describe": "readonly",
"it": "readonly",
"beforeEach": "readonly"
},
"plugins": ["meteor"],
"extends": ["airbnb", "plugin:meteor/recommended"],
"rules": {
"import/no-unresolved": ["error", { "ignore": ["^meteor/"] }],
"camelcase": "off",
"no-restricted-globals":"off",
"jsx-a11y/no-static-element-interactions":"off",
"jsx-a11y/click-events-have-key-events":"off",
"jsx-a11y/anchor-is-valid":"off",
"no-alert":"off",
"jsx-a11y/mouse-events-have-key-events":"off",
"no-underscore-dangle":"off",
"jsx-a11y/label-has-for":"off",
"jsx-a11y/label-has-associated-control":"off",
"react/button-has-type":"off",
"consistent-return":"off",
"array-callback-return":"off",
"jsx-a11y/iframe-has-title":"off",
"react/jsx-no-target-blank":"off",
"import/extensions": "off",
"meteor/no-session":"off"
}
}