canvas-lms/spec/.eslintrc

32 lines
654 B
Plaintext
Raw Normal View History

{
"env": {
"qunit": true
},
"globals": {
"module": true,
"test": true,
"equal": true,
"ok": 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-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"
}
}