mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-27 08:54:32 +00:00
21 lines
340 B
JavaScript
21 lines
340 B
JavaScript
module.exports = {
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"experimentalObjectRestSpread": true
|
|
}
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"embertest": true
|
|
},
|
|
"rules": {
|
|
"no-implicit-globals": [
|
|
1
|
|
]
|
|
}
|
|
};
|