From 2a33dea919bf95ec7fec32adc0923a1d4ccb1a7f Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sun, 11 Feb 2024 02:00:30 +0100 Subject: [PATCH] configure eslint to use jsdoc --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 85d1353..6499a8f 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,5 +8,8 @@ "ecmaVersion": "latest", "sourceType": "module" }, - "rules": {} + "plugins": ["jsdoc"], + "rules": { + "jsdoc/no-undefined-types": 1 + } }