Files
jasmine/spec/.eslintrc.js
2020-07-01 16:09:14 -07:00

14 lines
367 B
JavaScript

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",
}
}