From c79f43535fa92f171b404177a020276e060ea2e5 Mon Sep 17 00:00:00 2001 From: DCoded <dsoloha@live.com> Date: Fri, 24 May 2019 19:57:23 -0400 Subject: [PATCH] Added JSdoc settings to ESlint --- .eslintrc.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 7cb3548b0d7..620e90e3ba9 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 } } -- GitLab