change lint rules

This commit is contained in:
AlecM33
2022-03-30 21:24:08 -04:00
parent 41493e1d09
commit e57dcdbdd9

View File

@@ -23,6 +23,15 @@
"no-undef": "off", "no-undef": "off",
"no-return-assign": "warn", "no-return-assign": "warn",
"prefer-promise-reject-errors": "warn", "prefer-promise-reject-errors": "warn",
"no-trailing-spaces": "off" "no-trailing-spaces": "off",
"space-unary-ops": [
2, {
"words": true,
"nonwords": false,
"overrides": {
"--": true,
"++": true
}
}]
} }
} }