mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-24 09:08:07 +02:00
Merge pull request #17548 from calixteman/eslint_jasmine
Avoid to have focused tests in using eslint-plugin-jasmine
This commit is contained in:
commit
10eef372ff
3 changed files with 25 additions and 11 deletions
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue