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:
XhmikosR 2020-11-02 12:33:50 +02:00
parent 8a948ccc0d
commit 57ee20ea1c

View file

@ -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"
}
}