diff options
author | James Maa <jmaa@berkeley.edu> | 2024-06-14 13:24:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 20:24:44 +0000 |
commit | 0283b298af2d04c7bc013fad7db5966d651f0142 (patch) | |
tree | 9c66d07666413665ec7d7c624d119aea94747609 | |
parent | 3dda522244ed5d7c20636a115c516d2cff5850fb (diff) |
Disable capitalized-comments (#1072)
* Disable capitalized-comments
* Remove capitalized-comments
-rw-r--r-- | .eslintrc.json | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 3f6b467b..9b4f8685 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -43,15 +43,6 @@ ], "rules": { "accessor-pairs": "error", - "capitalized-comments": [ - "error", - "always", - { - "ignorePattern": "case|[a-z]+[A-Z0-9]|[a-z]+\\.\\w", - "ignoreInlineComments": true, - "ignoreConsecutiveComments": true - } - ], "curly": ["error", "all"], "default-case-last": "error", "dot-notation": "error", |