From fc8dbbe1603594860d51cb679bde48edb81c67c8 Mon Sep 17 00:00:00 2001 From: Dan Gowans Date: Mon, 4 Nov 2024 10:33:24 -0500 Subject: [PATCH] disable eslint-comments/require-description --- eslint.config.js | 1 + eslint.config.ts | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index f7dc199..779310c 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -63,6 +63,7 @@ export const config = tseslint.config(eslint.configs.recommended, ...tseslint.co '@typescript-eslint/restrict-plus-operands': 'warn', '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/strict-boolean-expressions': 'warn', + 'eslint-comments/require-description': 'off', 'import/order': [ 'error', { diff --git a/eslint.config.ts b/eslint.config.ts index c4754eb..833175d 100644 --- a/eslint.config.ts +++ b/eslint.config.ts @@ -88,6 +88,8 @@ export const config = tseslint.config( '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/strict-boolean-expressions': 'warn', + 'eslint-comments/require-description': 'off', + 'import/order': [ 'error', { diff --git a/package-lock.json b/package-lock.json index 7281bb0..35cc470 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "eslint-config-cityssm", - "version": "15.0.0", + "version": "15.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "eslint-config-cityssm", - "version": "15.0.0", + "version": "15.0.1", "license": "Unlicense", "dependencies": { "@cspell/eslint-plugin": "^8.15.7", diff --git a/package.json b/package.json index 2608936..bc20736 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "eslint-config-cityssm", "type": "module", "description": "ESLint rules used in the City of Sault Ste. Marie's TypeScript projects.", - "version": "15.0.0", + "version": "15.0.1", "main": "eslint.config.js", "exports": { ".": "./eslint.config.js",