Set 2 eslint rules as warning temporarly

This commit is contained in:
2022-08-19 16:05:16 +02:00
parent c533d8868a
commit f1eaf3e019

View File

@@ -6,13 +6,15 @@
},
"extends": ["eslint-config-airbnb-base", "plugin:prettier/recommended"],
"rules": {
"max-classes-per-file": 1,
"no-empty": [
2,
{
"allowEmptyCatch": true
}
],
"no-underscore-dangle": "off",
"no-shadow": "off"
"no-promise-executor-return": 1,
"no-shadow": "off",
"no-underscore-dangle": "off"
}
}