mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-03 14:23:03 +00:00
18 lines
268 B
JavaScript
18 lines
268 B
JavaScript
![]() |
module.exports = {
|
||
|
"extends": "eslint:recommended",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 6,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es6": true,
|
||
|
"embertest": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-implicit-globals": [
|
||
|
1
|
||
|
]
|
||
|
}
|
||
|
};
|