Disable no-undef-init

This commit is contained in:
2018-08-20 10:18:17 +05:30
parent 6bdacb6c7a
commit d2b727e844
2 changed files with 2 additions and 1 deletions
+2
View File
@@ -21,6 +21,8 @@ module.exports.rules = requireIndex(__dirname + "/rules");
module.exports.configs = {
recommended: {
rules: {
// Disable no-undef-init as its the opposite inbuilt rule
'no-undef-init': 0,
'undef-init/undef-init': 1,
},
},