diff --git a/.eslintrc.json b/.eslintrc.json index 7cb3548b0d75a5db18133ebf16ccdc178baf077d..620e90e3ba93a99967c99cfaa7239da3e3930c1b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -27,6 +27,9 @@ "impliedStrict": true } }, + "plugins": [ + "jsdoc" + ], "rules": { "semi": ["warn", "always"], "semi-spacing": "warn", @@ -66,6 +69,11 @@ { "allowSingleLine": true } - ] + ], + "jsdoc/check-alignment": 1, + "jsdoc/check-indentation": 1, + "jsdoc/check-param-names": 1, + "jsdoc/check-syntax": 1, + "jsdoc/check-tag-names": 1 } }