We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b22520 commit 34df6a5Copy full SHA for 34df6a5
.eslintrc
@@ -33,6 +33,16 @@ rules:
33
no-unreachable: 2
34
## require valid typeof compared string like typeof foo === 'strnig'
35
valid-typeof: 2
36
+ ## disallow controls characters in regular expressions
37
+ no-control-regex: 2
38
+ ## disallow extra boolean casts
39
+ no-extra-boolean-cast : 2
40
+ ## validate regular expressions
41
+ no-invalid-regexp: 2
42
+ ## forbid weird whitespace characters
43
+ no-irregular-whitespace: 2
44
+ ## avoid unexpected multiline expressions
45
+ no-unexpected-multiline: 2
46
47
# Best Practices
48
# list: https://github.com/eslint/eslint/tree/master/docs/rules#best-practices
0 commit comments