File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
// "forwardPorts": [],
23
23
24
24
// Use 'postCreateCommand' to run commands after the container is created.
25
- "postCreateCommand" : " npm install" ,
25
+ "postCreateCommand" : " npm install --legacy-peer-deps " ,
26
26
27
27
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
28
28
"remoteUser" : " node"
Original file line number Diff line number Diff line change 84
84
"@types/eslint" : " ^8.0.0" ,
85
85
"@types/eslint-scope" : " ^3.7.0" ,
86
86
"@types/eslint-visitor-keys" : " ^1.0.0" ,
87
- "@types/estree" : " ^0.0.51 " ,
87
+ "@types/estree" : " ^0.0.52 " ,
88
88
"@types/less" : " ^3.0.3" ,
89
89
"@types/mocha" : " ^9.0.0" ,
90
90
"@types/node" : " ^16.0.0" ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import plugin from "../../../src/index"
9
9
// Initialize linter.
10
10
const linter = new eslint . ESLint ( {
11
11
plugins : {
12
- "@ota-meshi/svelte" : plugin ,
12
+ "@ota-meshi/svelte" : plugin as never ,
13
13
} ,
14
14
baseConfig : {
15
15
parser : require . resolve ( "svelte-eslint-parser" ) ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ describe("ignore-warnings", () => {
14
14
15
15
const linter = new eslint . ESLint ( {
16
16
plugins : {
17
- "@ota-meshi/svelte" : plugin ,
17
+ "@ota-meshi/svelte" : plugin as never ,
18
18
} ,
19
19
baseConfig : {
20
20
parser : require . resolve ( "svelte-eslint-parser" ) ,
@@ -77,7 +77,7 @@ describe("ignore-warnings", () => {
77
77
78
78
const linter = new eslint . ESLint ( {
79
79
plugins : {
80
- "@ota-meshi/svelte" : plugin ,
80
+ "@ota-meshi/svelte" : plugin as never ,
81
81
} ,
82
82
baseConfig : {
83
83
parser : require . resolve ( "svelte-eslint-parser" ) ,
@@ -137,7 +137,7 @@ describe("ignore-warnings", () => {
137
137
138
138
const linter = new eslint . ESLint ( {
139
139
plugins : {
140
- "@ota-meshi/svelte" : plugin ,
140
+ "@ota-meshi/svelte" : plugin as never ,
141
141
} ,
142
142
baseConfig : {
143
143
parser : require . resolve ( "svelte-eslint-parser" ) ,
You can’t perform that action at this time.
0 commit comments