Disable a few rules
* `jasmine/expect-single-argument` since it wrongfully flags `expect().nothing()` * `jasmine/new-line-before-expect` * `jasmine/no-spec-dupes` * `jasmine/prefer-toHaveBeenCalledWith`
This commit is contained in:
parent
8a948ccc0d
commit
57ee20ea1c
1 changed files with 7 additions and 1 deletions
|
|
@ -9,5 +9,11 @@
|
|||
"extends": [
|
||||
"../../../.eslintrc.json",
|
||||
"plugin:jasmine/recommended"
|
||||
]
|
||||
],
|
||||
"rules": {
|
||||
"jasmine/expect-single-argument": "off",
|
||||
"jasmine/new-line-before-expect": "off",
|
||||
"jasmine/no-spec-dupes": "off",
|
||||
"jasmine/prefer-toHaveBeenCalledWith": "off"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue