Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

6.0.0

Compare
Choose a tag to compare
@mariyadiminsky mariyadiminsky released this 08 May 16:33
· 25 commits to master since this release

Breaking Changes

Introducing a new eslint rule to add true explicitly.

Example

// Good
<video controls />

// Bad
<video controls={true} />

Why is this valuable?

It's the ol' Implicit vs explicit approach. Implicit is great because sure it looks nicer and once you know what's going on in the code you don't need the explicit explanation. Still it's important to consider new team members reading our codebase, it benefits the entire development team so everyone has a clearer view of what is connected to what + it's more readable.