-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 874 Bytes
/
package.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
{
"name": "meteor-schema-deny",
"private": true,
"scripts": {
"lint": "eslint ."
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1"
},
"eslintConfig": {
"extends": "airbnb-base",
"parser": "babel-eslint",
"env": {
"browser": true,
"jest": true
},
"rules": {
"arrow-body-style": 0,
"consistent-return": 0,
"max-len": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-use-before-define": [
2,
"nofunc"
],
"no-unused-expressions": 0,
"no-console": 0,
"space-before-function-paren": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/extensions": 0
}
}
}