Skip to content

Commit 71f9f9a

Browse files
committed
prefix any attribute with !, or wrap a value with noCheck(), to skip equality checks
1 parent 3802b6d commit 71f9f9a

File tree

3 files changed

+696
-28
lines changed

3 files changed

+696
-28
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ reference, using `describe` and `it` functions to describe unit tests.
7878
- Always prefer `const` for variables that don't change, and `let` only for
7979
variables that change. Never use `var` unless absolutely necessary for special
8080
hoisting reasons.
81-
- Always prefer for-of over items.forEach
81+
- Always prefer for-of over `items.forEach`
8282
- Always prefer `element.remove()` instead of `element.parentNode.removeChild(element)`.
8383
- Always prefer `parentElement.append(childElement)` instead of
8484
`parentElement.appendChild(childElement)`.

0 commit comments

Comments
 (0)