diff --git a/.eslintrc.json b/.eslintrc.json index 0a7fb5ca8b6339195e3f9ee32450e800168fbfa8..bc2ea02886251211cd4c4db05db0e2cce698be6c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -28,7 +28,7 @@ "no-unused-expressions": "off", "no-unused-labels": "warn", "no-var": "warn", - "jsdoc/no-types": "off", + "jsdoc/no-types": "warn", "semi": "off", "@typescript-eslint/semi": "warn", "@typescript-eslint/class-name-casing": "warn", @@ -607,5 +607,15 @@ "restrictions": "**/vs/**" } ] - } + }, + "overrides": [ + { + "files": [ + "*.js" + ], + "rules": { + "jsdoc/no-types": "off" + } + } + ] }