Run eslint against all files

This commit is contained in:
Steve Gravrock
2020-07-01 16:05:02 -07:00
parent fb23277367
commit ba2aae63be
4 changed files with 18 additions and 9 deletions

13
spec/.eslintrc.js Normal file
View File

@@ -0,0 +1,13 @@
module.exports = {
rules: {
// Relax rules for now to allow for the quirks of the test suite
// TODO: We should probably remove these & fix the resulting errors
"quotes": "off",
"semi": "off",
"key-spacing": "off",
"space-before-blocks": "off",
"no-unused-vars": "off",
"no-trailing-spaces": "off",
"block-spacing": "off",
}
}