mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 09:48:18 -05:00
40 lines
748 B
JSON
40 lines
748 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"extends": ["airbnb"],
|
|
"rules": {
|
|
"max-len": 0,
|
|
"no-plusplus": 0,
|
|
"no-bitwise": 0,
|
|
"no-unused-expressions": 0,
|
|
"import/no-extraneous-dependencies": [2, { "devDependencies": true }],
|
|
"react/prop-types": 0,
|
|
"comma-dangle": 0
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.spec.js"],
|
|
"env": {
|
|
"browser": false,
|
|
"node": true,
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"chai": false,
|
|
"expect": false,
|
|
"sinon": false,
|
|
"page": false
|
|
},
|
|
"plugins": ["mocha"],
|
|
"rules": {
|
|
"mocha/no-exclusive-tests": "error"
|
|
}
|
|
}
|
|
]
|
|
}
|