Skip to content

Commit ba84883

Browse files
Update dependency @types/estree to ^0.0.52 (#156)
* Update dependency @types/estree to ^0.0.52 * fix * fix Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yosuke Ota <[email protected]>
1 parent 280d02b commit ba84883

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// "forwardPorts": [],
2323

2424
// Use 'postCreateCommand' to run commands after the container is created.
25-
"postCreateCommand": "npm install",
25+
"postCreateCommand": "npm install --legacy-peer-deps",
2626

2727
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
2828
"remoteUser": "node"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"@types/eslint": "^8.0.0",
8585
"@types/eslint-scope": "^3.7.0",
8686
"@types/eslint-visitor-keys": "^1.0.0",
87-
"@types/estree": "^0.0.51",
87+
"@types/estree": "^0.0.52",
8888
"@types/less": "^3.0.3",
8989
"@types/mocha": "^9.0.0",
9090
"@types/node": "^16.0.0",

tests/src/rules/comment-directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import plugin from "../../../src/index"
99
// Initialize linter.
1010
const linter = new eslint.ESLint({
1111
plugins: {
12-
"@ota-meshi/svelte": plugin,
12+
"@ota-meshi/svelte": plugin as never,
1313
},
1414
baseConfig: {
1515
parser: require.resolve("svelte-eslint-parser"),

tests/src/settings/ignore-warnings.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe("ignore-warnings", () => {
1414

1515
const linter = new eslint.ESLint({
1616
plugins: {
17-
"@ota-meshi/svelte": plugin,
17+
"@ota-meshi/svelte": plugin as never,
1818
},
1919
baseConfig: {
2020
parser: require.resolve("svelte-eslint-parser"),
@@ -77,7 +77,7 @@ describe("ignore-warnings", () => {
7777

7878
const linter = new eslint.ESLint({
7979
plugins: {
80-
"@ota-meshi/svelte": plugin,
80+
"@ota-meshi/svelte": plugin as never,
8181
},
8282
baseConfig: {
8383
parser: require.resolve("svelte-eslint-parser"),
@@ -137,7 +137,7 @@ describe("ignore-warnings", () => {
137137

138138
const linter = new eslint.ESLint({
139139
plugins: {
140-
"@ota-meshi/svelte": plugin,
140+
"@ota-meshi/svelte": plugin as never,
141141
},
142142
baseConfig: {
143143
parser: require.resolve("svelte-eslint-parser"),

0 commit comments

Comments
 (0)