Skip to content

Commit 10538cc

Browse files
committedJun 29, 2023
fix: Add eslint-plugin-etc as dependency in config.ts
The changes added the 'eslint-plugin-etc' to the 'etc' config's dependencies array in the 'config.ts' file. This was necessary to ensure that this config correctly implements and enforces all relevant Etcetera rules in our linting setup. Signed-off-by: prisis <d.bannert@anolilab.de>
1 parent 73649aa commit 10538cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/eslint-config/src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const pluginConfig: PackageRules = [
130130
},
131131
{
132132
configName: "etc",
133-
dependencies: ["typescript"],
133+
dependencies: ["typescript", "eslint-plugin-etc"],
134134
},
135135
{
136136
configName: "typescript-sort-keys",

0 commit comments

Comments
 (0)
Please sign in to comment.