@piano/eslint-plugin-piano
v0.0.1
Published
eslint rules for piano
Downloads
3
Readme
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.