From 4ce69f9883cbc37724c2f67f494489e7285221b1 Mon Sep 17 00:00:00 2001 From: Kanad Gupta Date: Tue, 10 Sep 2024 09:30:08 -0500 Subject: [PATCH] chore: format --- .eslintrc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.eslintrc b/.eslintrc index 675eb385f..c28e55337 100644 --- a/.eslintrc +++ b/.eslintrc @@ -5,16 +5,16 @@ { "files": ["bin/*.js"], "rules": { - "@typescript-eslint/no-var-requires": "off" - } - } + "@typescript-eslint/no-var-requires": "off", + }, + }, ], "env": { "es2021": true, - "node": true + "node": true, }, "parserOptions": { - "sourceType": "module" + "sourceType": "module", }, "rules": { // We specify `{}` in `CommandOptions` generics when those commands don't have their own @@ -53,13 +53,13 @@ "paths": [ { "name": "ci-info", - "message": "The `ci-info` package is difficult to test because misleading results will appear when running tests in the GitHub Actions runner. Instead of importing this package directly, create a wrapper function in `lib/isCI.ts` and import that instead." - } - ] - } + "message": "The `ci-info` package is difficult to test because misleading results will appear when running tests in the GitHub Actions runner. Instead of importing this package directly, create a wrapper function in `lib/isCI.ts` and import that instead.", + }, + ], + }, ], // This rule is only really applicable for OSS libraries and doesn't apply to rdme's case. - "readme/no-dual-exports": "off" - } + "readme/no-dual-exports": "off", + }, }