What's changed ?
1.0.4
Released - 12 Feb, 2024
- Upgraded
@stylistic/eslint-plugin
,@typescript-eslint/eslint-plugin
and@typescript-eslint/parser
dependencies. - Removed
es2024
key fromenv
. - Turn off no-mixed-spaces-and-tabs rule.
1.0.3
Released - 31 Jan, 2024
"More developer friendly, Yay! 😃"
Approx 90% of the rules used now warn
instead of throwing an error, so you can focus more on writing the logic, and not on formatting the code! Only the rules that throw an error
and some exceptional warn
rules like 'no-debugger'
must be fixed by the developer.
Also, added some cool new badges in README.md thanks to Shields.io !
1.0.2
Released - 28 Jan, 2024
While using this package during my development, I felt that the status of the rules listed below needed to be changed from error
to warn
as they would cause my app to crash, prompting me to alter my code to keep eslint happy (and make me irritated instead 😡). These rules would automatically fix the code on running the yarn lint
script.
These rules are listed below -
Rule Name |
---|
comma-dangle |
ban-ts-comment |
eol-last |
jsx-one-expression-per-line |
The below rule is removed from the config file.
Rule Name | Reason |
---|---|
multiline-comment-style | the default setting starred-block read commented code as a comment itself, which made it difficult to uncomment the code |