mirror of
https://github.com/axios/axios.git
synced 2026-04-11 02:11:50 +08:00
16 lines
249 B
JavaScript
16 lines
249 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"es2018": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-cond-assign": 0
|
|
}
|
|
}
|