質問編集履歴

1

json追記

2021/06/11 09:10

投稿

Kota_Sato
Kota_Sato

スコア4

test CHANGED
File without changes
test CHANGED
@@ -48,6 +48,206 @@
48
48
 
49
49
 
50
50
 
51
+ ### setting.jsonの内容
52
+
53
+ ```
54
+
55
+ {
56
+
57
+ "files.trimFinalNewlines": true,
58
+
59
+ "files.insertFinalNewline": true,
60
+
61
+ "files.trimTrailingWhitespace": true,
62
+
63
+ "editor.formatOnPaste": true,
64
+
65
+ "editor.formatOnSave": true,
66
+
67
+ "workbench.iconTheme": "material-icon-theme",
68
+
69
+ "editor.fontSize": 16,
70
+
71
+ "workbench.startupEditor": "newUntitledFile",
72
+
73
+ "editor.tabSize": 2,
74
+
75
+ "editor.wordWrap": "on",
76
+
77
+ "editor.detectIndentation": false,
78
+
79
+ "files.autoGuessEncoding": true,
80
+
81
+ "liveServer.settings.CustomBrowser": "chrome",
82
+
83
+ "liveServer.settings.donotVerifyTags": true,
84
+
85
+ "workbench.editor.enablePreview": false,
86
+
87
+ "[html]": {
88
+
89
+ "editor.defaultFormatter": "vscode.html-language-features"
90
+
91
+ },
92
+
93
+ "explorer.confirmDelete": false,
94
+
95
+ "explorer.confirmDragAndDrop": false,
96
+
97
+ "beautify.language": {
98
+
99
+ "js": {
100
+
101
+ "type": [
102
+
103
+ "javascript",
104
+
105
+ "json",
106
+
107
+ "jsonc"
108
+
109
+ ],
110
+
111
+ "filename": [
112
+
113
+ ".jshintrc",
114
+
115
+ ".jsbeautifyrc"
116
+
117
+ ]
118
+
119
+ },
120
+
121
+ "css": [
122
+
123
+ "css",
124
+
125
+ "less",
126
+
127
+ "scss"
128
+
129
+ ],
130
+
131
+ "html": [
132
+
133
+ "htm",
134
+
135
+ "html",
136
+
137
+ "erb"
138
+
139
+ ]
140
+
141
+ },
142
+
143
+ "files.associations": {
144
+
145
+ "*.erb": "erb"
146
+
147
+ },
148
+
149
+ "emmet.includeLanguages": {
150
+
151
+ "erb": "html"
152
+
153
+ },
154
+
155
+ "[css]": {
156
+
157
+ "editor.defaultFormatter": "HookyQR.beautify"
158
+
159
+ },
160
+
161
+ "ruby.lint": {
162
+
163
+ "rubocop": true
164
+
165
+ },
166
+
167
+ "ruby.rubocop.onSave": true,
168
+
169
+ "ruby.format": "rubocop",
170
+
171
+ "ruby.rubocop.executePath": "/opt/homebrew/opt/rbenv/shims/",
172
+
173
+ "ruby.rubocop.configFilePath": "",
174
+
175
+ "liveServer.settings.donotShowInfoMsg": true,
176
+
177
+ "files.autoSave": "afterDelay",
178
+
179
+ "emmet.triggerExpansionOnTab": true,
180
+
181
+ "diffEditor.ignoreTrimWhitespace": false,
182
+
183
+ "ruby.intellisense": "rubyLocate",
184
+
185
+ "editor.formatOnType": true,
186
+
187
+ "terminal.integrated.fontFamily": "Menlo",
188
+
189
+ "editor.fontFamily": "Menlo",
190
+
191
+ "[python]": {
192
+
193
+ "editor.tabSize": 4,
194
+
195
+ },
196
+
197
+ "python.insidersChannel": "weekly",
198
+
199
+ "terminal.integrated.inheritEnv": false,
200
+
201
+ "python.pythonPath": "/Users/satokota/opt/anaconda3/bin/python",
202
+
203
+ "python.analysis.typeCheckingMode": "basic",
204
+
205
+ "python.linting.pylintEnabled": false,
206
+
207
+ "python.linting.flake8Enabled": true,
208
+
209
+ "python.linting.flake8Args": [
210
+
211
+ "--max-line-length",
212
+
213
+ "88",
214
+
215
+ "--ignore=E203,W503,W504"
216
+
217
+ ],
218
+
219
+ "editor.codeActionsOnSave": {
220
+
221
+ "source.organizeImports": true
222
+
223
+ },
224
+
225
+ "workbench.editorAssociations": {
226
+
227
+ "*.ipynb": "jupyter-notebook"
228
+
229
+ },
230
+
231
+ "notebook.cellToolbarLocation": {
232
+
233
+ "default": "right",
234
+
235
+ "jupyter-notebook": "left"
236
+
237
+ },
238
+
239
+ "window.zoomLevel": -1,
240
+
241
+ "python.showStartPage": false,
242
+
243
+ "python.languageServer": "Pylance"
244
+
245
+ }
246
+
247
+
248
+
249
+ ```
250
+
51
251
  ### 補足情報(FW/ツールのバージョンなど)
52
252
 
53
253