mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-05 08:07:04 +00:00
18 lines
268 B
JavaScript
18 lines
268 B
JavaScript
module.exports = {
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"embertest": true
|
|
},
|
|
"rules": {
|
|
"no-implicit-globals": [
|
|
1
|
|
]
|
|
}
|
|
};
|