From a11e2d404939db8bc3ef845af1b9df117483c1ec Mon Sep 17 00:00:00 2001 From: Yuki Hattori Date: Sat, 18 May 2024 01:38:10 +0900 Subject: [PATCH] Remove unused ESLint comments and config files --- docsify/.eslintrc.yml | 3 --- jest.setup.js | 1 - src/postcss/import/parse.js | 1 - test/.eslintrc.yml | 5 ----- 4 files changed, 10 deletions(-) delete mode 100644 docsify/.eslintrc.yml delete mode 100644 test/.eslintrc.yml diff --git a/docsify/.eslintrc.yml b/docsify/.eslintrc.yml deleted file mode 100644 index 11c5b49a..00000000 --- a/docsify/.eslintrc.yml +++ /dev/null @@ -1,3 +0,0 @@ -rules: - import/no-extraneous-dependencies: off - no-console: off diff --git a/jest.setup.js b/jest.setup.js index 1c827738..af8d02dc 100644 --- a/jest.setup.js +++ b/jest.setup.js @@ -1,2 +1 @@ -/* eslint-env jest */ global.context = describe diff --git a/src/postcss/import/parse.js b/src/postcss/import/parse.js index a3f58cd7..87d53fa5 100644 --- a/src/postcss/import/parse.js +++ b/src/postcss/import/parse.js @@ -1,4 +1,3 @@ -/* eslint consistent-return: 0 */ /** @module */ import postcssPlugin from '../../helpers/postcss_plugin' diff --git a/test/.eslintrc.yml b/test/.eslintrc.yml deleted file mode 100644 index 04ebdfa0..00000000 --- a/test/.eslintrc.yml +++ /dev/null @@ -1,5 +0,0 @@ -env: - jest: true - -globals: - context: true