eslint-plugin-piano
ESlint rules for Piano:
- strict-assert
-
assert.equal
andassert.deepEqual
perform the comparison using the==
operator. In tests we prefer strict equality (the===
operator), so we enforce thatassert.strictEqual
andassert.deepStrictEqual
is used instead.
-