canvas-lms/spec/.eslintrc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
743 B
Plaintext
Raw Normal View History

{
"env": {
"qunit": true
},
"globals": {
"module": true,
"test": true,
"equal": true,
"ok": true,
"sandbox": true,
"sinon": true,
"deepEqual": true
},
"extends": ["plugin:qunit/recommended", "plugin:qunit/two"],
"plugins": ["qunit"],
"rules": {
"func-names": "off",
"prefer-arrow-callback": "off",
"jest/no-identical-title": "off",
"qunit/no-setup-teardown": "off",
"qunit/no-global-assertions": "off",
"qunit/no-global-module-test": "off",
"qunit/require-expect": "off",
"qunit/no-assert-logical-expression": "error",
"qunit/no-commented-tests": "error",
"qunit/no-compare-relation-boolean": "error"
},
"parserOptions": {
"ecmaVersion": 2020
}
}