ESLintで名前付き引数でErrorが出ないようにする方法
環境
- Node.js v10.10.0
- ESLint v5.13.0
質問
以下のコードの名前付き引数min, maxで、Errorが発生します。
const randomIndex = random.int(min=0, max=10);
error 'min' is not defined no-undef
error 'max' is not defined no-undef
どのような設定を行えば、警告が消えますか?
.eslintrc.js
module.exports = {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-console": 0
}
};