This repository was archived by the owner on Oct 18, 2019. It is now read-only.
v2.2.0
Added
- getter-return All getter function should have a return
- padding-line-between-statements This replaces three deprecated rules:
- for-direction We are not using for but if ever someone disable the rule that restrict this, it's good to have a rule that will avoid infinite loop
- no-buffer-constructor We are not using this also, but I think it's a nice rule to have to avoid using deprecated
new Buffersyntax that may lead to security vulnerabilities if not use properly.
Removed
- lines-around-directive Deprecated
- newline-after-var Deprecated
- newline-before-return Deprecated
- capitalized-comments This is something I added before but now that it's being used I don't see any benefit from it. I want to remove this because it's is sometimes frustrating when debugging with this rule and auto fix on. When we comment some codes to debug this will capitalize start of the codes and have to be reverted when uncommenting. If you benefit from this rule, comment below.
- class-methods-use-this does not work well with our new way of creating react components
- id-blacklist hurts more that in helps - @Draydrew (#24 (review))