This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
node-fetch-cache/.eslintrc.json

22 lines
394 B
JSON
Raw Normal View History

2021-07-05 18:17:21 +00:00
{
2020-04-17 19:40:42 +00:00
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
2021-07-05 18:17:21 +00:00
"import/extensions": "off",
"import/prefer-default-export": "off"
2020-04-17 19:40:42 +00:00
}
2021-07-05 18:17:21 +00:00
}