diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 22:01:45 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 22:01:45 +0300 |
commit | b2282f2cd154924314abeb11103d907e6f999a1e (patch) | |
tree | 933f549bbad2c223ca08830e86b017e974593388 | |
parent | d1751228f2f845d59255ae17a78573f91fa6cd6e (diff) | |
download | eslint-config-b2282f2cd154924314abeb11103d907e6f999a1e.tar.xz eslint-config-b2282f2cd154924314abeb11103d907e6f999a1e.zip |
feat(eslint): Rule "class-methods-use-this"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -16,7 +16,7 @@ - [ ] "callback-return" - [ ] "camelcase" - [ ] "capitalized-comments" -- [ ] "class-methods-use-this" +- [X] "class-methods-use-this" - [X] "comma-dangle" - [X] "comma-spacing" - [ ] "comma-style" diff --git a/src/rules/default.json b/src/rules/default.json index 52611ee..b8c2521 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -17,6 +17,9 @@ "allowSingleLine": false } ], + "class-methods-use-this": [ + "warn" + ], "comma-dangle": [ "error", "always-multiline" |