From 49833224aa52429bad180b1b137249236a5392e7 Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Thu, 6 Jun 2024 22:16:27 -0500 Subject: [PATCH] Add eslint rule to make sure disable directives are used --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f6d465a3..3412d784 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -37,5 +37,8 @@ "isort.args":["--profile", "black"], "flake8.args": [ "--ignore=E501,W503" - ] + ], + "eslint.options": { + "reportUnusedDisableDirectives": "error" + }, }