1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-24 09:08:07 +02:00

Avoid to have focused tests in using eslint-plugin-jasmine

This commit is contained in:
Calixte Denizet 2024-01-20 21:42:37 +01:00
parent 626674553d
commit 99ee308f3d
3 changed files with 25 additions and 11 deletions

View file

@ -1,10 +1,18 @@
{
"extends": [
"../.eslintrc"
],
"plugins": ["jasmine"],
"extends": ["../.eslintrc", "plugin:jasmine/recommended"],
"env": {
"node": true,
"jasmine": true,
"jasmine": true
},
"rules": {
"jasmine/new-line-before-expect": "off",
"jasmine/new-line-between-declarations": "off",
"jasmine/no-focused-tests": "error",
"jasmine/no-pending-tests": "off",
"jasmine/no-spec-dupes": "off",
"jasmine/no-suite-dupes": "off",
"jasmine/prefer-jasmine-matcher": "off",
"jasmine/prefer-toHaveBeenCalledWith": "off"
}
}