24 lines
695 B
JavaScript
24 lines
695 B
JavaScript
module.exports = {
|
|
"ignorePatterns": [
|
|
"support/ci.js",
|
|
"support/jasmine-browser.js"
|
|
],
|
|
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",
|
|
|
|
// Since linting is done at the end of the process and doesn't stop us
|
|
// from running tests, it makes sense to fail if debugger statements
|
|
// or console references are present.
|
|
"no-debugger": "error",
|
|
"no-console": "error",
|
|
}
|
|
};
|