Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New rule: No default assignment with ternary operator
This is no longer allowed: var a = x ? x : 1 In favor of: var a = x || 1
- Loading branch information