diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 13:54:09 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 13:54:09 -0500 |
commit | 19f359af78c052c7d3083fc353d37c606444f179 (patch) | |
tree | 60a2ba095efded5dcea8443e0230d8764b49f106 /.eslintrc.json | |
parent | aabd761ee9064f6a46703f234e016f31f6441fa0 (diff) |
Config updates
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 3200d292..640a67e2 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -61,7 +61,7 @@ "no-case-declarations": "error", "no-const-assign": "error", "no-constant-condition": "off", - "no-console": "warn", + "no-console": "off", "no-global-assign": "error", "no-param-reassign": "off", "no-prototype-builtins": "error", @@ -263,7 +263,7 @@ "jsdoc/multiline-blocks": "error", "jsdoc/no-bad-blocks": "error", "jsdoc/no-multi-asterisks": "error", - "jsdoc/no-undefined-types": 1, + "jsdoc/no-undefined-types": "error", "jsdoc/require-asterisk-prefix": "error", "jsdoc/require-hyphen-before-param-description": [ "error", @@ -762,6 +762,16 @@ "vitest/prefer-to-be": "off" }, "env": {} + }, + { + "files": [ + "dev/**/*.js", + "test/**/*.js" + ], + "rules": { + "jsdoc/require-jsdoc": "off", + "jsdoc/no-undefined-types": "off" + } } ] } |