質問編集履歴
1
詳細追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,6 +6,8 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
+
|
10
|
+
|
9
11
|
### 発生している問題・エラーメッセージ
|
10
12
|
|
11
13
|
|
@@ -155,3 +157,55 @@
|
|
155
157
|
- eslintバージョン上げ
|
156
158
|
|
157
159
|
- eslint再インストール
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
```bash
|
166
|
+
|
167
|
+
npm i --save-dev typescript @typescript-eslint/parser
|
168
|
+
|
169
|
+
```
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
```log
|
176
|
+
|
177
|
+
npm install --save-dev eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser prettier eslint-config-prettier eslint-plugin-prettier
|
178
|
+
|
179
|
+
npm notice save @typescript-eslint/parser is being moved from dependencies to devDependencies
|
180
|
+
|
181
|
+
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules\fsevents):
|
182
|
+
|
183
|
+
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
+ eslint@7.30.0
|
188
|
+
|
189
|
+
+ eslint-config-prettier@8.3.0
|
190
|
+
|
191
|
+
+ eslint-plugin-prettier@3.4.0
|
192
|
+
|
193
|
+
+ @typescript-eslint/eslint-plugin@4.28.3
|
194
|
+
|
195
|
+
+ @typescript-eslint/parser@4.28.3
|
196
|
+
|
197
|
+
+ prettier@2.3.2
|
198
|
+
|
199
|
+
added 8 packages from 7 contributors, removed 2 packages, updated 5 packages, moved 1 package and audited 551 packages in 3.806s
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
77 packages are looking for funding
|
204
|
+
|
205
|
+
run `npm fund` for details
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
found 0 vulnerabilities
|
210
|
+
|
211
|
+
```
|