Skip to content

Commit fc9150f

Browse files
author
Matthieu Gicquel
authored
fix(eslint-plugin): config was broken because of missing char in rule name (#111)
* fix missing @ in rule name * revert createRelease: "github" it request a GH_TOKEN, which is painful if the `version` step is not done in CI
1 parent 6fae2d7 commit fc9150f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lerna.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"private": false,
88
"message": "chore(release): Publish",
99
"conventionalCommits": true,
10-
"allowBranch": "main",
11-
"createRelease": "github"
10+
"allowBranch": "main"
1211
}
1312
}
1413
}

packages/eslint-plugin/lib/configs/recommended.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const recommendedConfig = defineConfig({
3535
"@typescript-eslint/indent": "off",
3636
"@typescript-eslint/no-explicit-any": "error",
3737
"@typescript-eslint/no-non-null-assertion": "error",
38-
"typescript-eslint/no-shadow": "error",
38+
"@typescript-eslint/no-shadow": "error",
3939
"no-console": ["error", { allow: ["warn", "error"] }],
4040
"no-return-await": "error",
4141
"array-callback-return": "error",

0 commit comments

Comments
 (0)