forked from ryx/datalayer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
26 lines (26 loc) · 683 Bytes
/
.eslintrc
File metadata and controls
26 lines (26 loc) · 683 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
{
"extends": "airbnb-base",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"allowImportExportEverywhere": true
},
"env": {
"es6": true,
"node": true,
"browser": true,
"amd": true,
"jest": true
},
"globals": {},
"rules": {
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": [2, { "ignore": ["jquery", "^gk/", "^ba/vendor/"] }],
"import/extensions": ["error", "never", { "packages": "never" }],
"no-underscore-dangle": ["off"],
"no-param-reassign": ["error", { "props": false }],
"global-require": 0,
"max-len": ["error", 120],
"comma-dangle": ["error", "always-multiline"]
}
}