From 350afbca2668db2fd74e0612bd3f005af12f4cfa Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Wed, 16 Jul 2025 15:50:02 -0700 Subject: [PATCH 1/2] fix: remove projectService from base config (#53) --- .changeset/gentle-ghosts-grow.md | 5 +++++ index.js | 12 ------------ 2 files changed, 5 insertions(+), 12 deletions(-) create mode 100644 .changeset/gentle-ghosts-grow.md diff --git a/.changeset/gentle-ghosts-grow.md b/.changeset/gentle-ghosts-grow.md new file mode 100644 index 0000000..9faaf9c --- /dev/null +++ b/.changeset/gentle-ghosts-grow.md @@ -0,0 +1,5 @@ +--- +"@sveltejs/eslint-config": patch +--- + +fix: remove projectService from base config" diff --git a/index.js b/index.js index dad5722..fdc78f8 100644 --- a/index.js +++ b/index.js @@ -23,18 +23,6 @@ export default [ } } }, - // projectService is resource intensive, so only listing rules that require it here - { - languageOptions: { - parserOptions: { - projectService: true - } - }, - rules: { - '@typescript-eslint/await-thenable': 'error', - '@typescript-eslint/require-await': 'error' - } - }, { plugins: { n: node, '@stylistic': stylistic From 7def6c55795e5b3a4d762b0324c1688f2c78af87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Jul 2025 15:52:00 -0700 Subject: [PATCH 2/2] Version Packages (#54) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/gentle-ghosts-grow.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/gentle-ghosts-grow.md diff --git a/.changeset/gentle-ghosts-grow.md b/.changeset/gentle-ghosts-grow.md deleted file mode 100644 index 9faaf9c..0000000 --- a/.changeset/gentle-ghosts-grow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@sveltejs/eslint-config": patch ---- - -fix: remove projectService from base config" diff --git a/CHANGELOG.md b/CHANGELOG.md index eab6d51..763b0f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @sveltejs/eslint-config +## 8.3.3 + +### Patch Changes + +- fix: remove projectService from base config" ([#53](https://github.com/sveltejs/eslint-config/pull/53)) + ## 8.3.2 ### Patch Changes diff --git a/package.json b/package.json index 6d3db57..4c15100 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sveltejs/eslint-config", - "version": "8.3.2", + "version": "8.3.3", "description": "Svelte ESLint config", "type": "module", "main": "index.js",