This commit is contained in:
Daniel Lugo 2020-01-29 14:26:03 -04:00
parent 58cf841bdc
commit 857b9ba131

View file

@ -4,7 +4,6 @@
"rules": { "rules": {
"prettier/prettier": "error", "prettier/prettier": "error",
"strict": "off", "strict": "off",
"id-length": ["error", { "exceptions": ["_"] }],
"no-console": "off", "no-console": "off",
@ -67,7 +66,10 @@
// lightning has sync methods and this rule bans them // lightning has sync methods and this rule bans them
"no-sync": "off", "no-sync": "off",
"id-length": "off" "id-length": "off",
// typescript does this
"no-unused-vars": "off"
}, },
"parser": "babel-eslint", "parser": "babel-eslint",
"env": { "env": {