Skip to content

Commit 8487b5f

Browse files
authored
Merge pull request #281 from rezstream/dependabot/npm_and_yarn/typescript-eslint-58fabadad7
Bump the typescript-eslint group with 2 updates
2 parents e1cabe7 + 1010772 commit 8487b5f

File tree

7 files changed

+142
-140
lines changed

7 files changed

+142
-140
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"[javascript]": {
33
"editor.codeActionsOnSave": {
4-
"source.fixAll.eslint": true
4+
"source.fixAll.eslint": "explicit"
55
}
66
},
77
}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
- Bumped `braces` from 3.0.2 to 3.0.3
66
- Bumped `brace-expansion` from 1.1.11 to 1.1.12
7+
- Bumped `@typescript-eslint/eslint-plugin` from 5.61.0 to 6.21.0
8+
- Bumped `@typescript-eslint/parser from` 5.61.0 to 6.21.0
79

810
## [1.5.0](https://github.com/rezstream/eslint-plugin-rezstream/compare/v1.4.0...v1.5.0) - 2024-12-12
911

lib/configs/browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type{import("eslint").Linter.Config} */
1+
/** @type {import("eslint").Linter.Config} */
22
const config = {
33
env: {
44
browser: true,

lib/configs/recommended.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type{import("eslint").Linter.Config} */
1+
/** @type {import("eslint").Linter.Config} */
22
const config = {
33
parserOptions: {
44
ecmaFeatures: {

lib/configs/typescript.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/** @type{import("eslint").Linter.Config} */
1+
/** @type {import("eslint").Linter.Config} */
22
const config = {
33
extends: [
4-
"plugin:@typescript-eslint/recommended",
5-
"plugin:@typescript-eslint/recommended-requiring-type-checking",
4+
"plugin:@typescript-eslint/recommended-type-checking",
5+
"plugin:@typescript-eslint/stylistic-type-checked",
66
"plugin:import/typescript",
77
],
88
parser: "@typescript-eslint/parser",

0 commit comments

Comments
 (0)