chore(eslint): add comments and new rules

This commit is contained in:
r3nanp 2021-02-16 19:03:28 -03:00
parent ddbbc238b6
commit 0daa6ccd05

View File

@ -14,6 +14,11 @@
"prettier/prettier": "error",
"prefer-const": "off",
"camelcase": "off",
"no-underscore-dangle": "off"
"no-underscore-dangle": "off",
"consistent-return": "off",
/* Remove the necessity to use this on classes */
"class-methods-use-this": "off",
/* Enable variables declarations from shadowing variables declared in the outer scope */
"no-shadow": "off"
}
}