Add and sort eslint rules

This commit is contained in:
Quincy Morgan
2020-10-23 11:36:26 -04:00
parent 3f9ac9105b
commit 06441e72d7
+4 -3
View File
@@ -15,6 +15,7 @@
"sourceType": "module"
},
"rules": {
"class-methods-use-this": "error",
"default-case-last": "error",
"default-param-last": "error",
"dot-notation": "error",
@@ -73,14 +74,14 @@
"no-unreachable-loop": "warn",
"no-unused-expressions": "error",
"no-unused-vars": "warn",
"no-useless-escape": "off",
"no-use-before-define": ["off", "nofunc"],
"no-useless-backreference": "warn",
"no-useless-call": "warn",
"no-useless-concat": "warn",
"no-useless-escape": "off",
"no-void": "error",
"no-warning-comments": "warn",
"no-with": "error",
"no-use-before-define": ["off", "nofunc"],
"no-useless-backreference": "warn",
"quotes": ["error", "single"],
"radix": ["error", "always"],
"require-atomic-updates": "error",