diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-03-10 17:19:51 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-03-10 17:19:51 -0600 |
commit | d16cb71aa6b74358442dc38d87814c9f75662e93 (patch) | |
tree | 97968a863d0b43b1f88de25720ec26870f2df72a /.vscode | |
parent | Bump @typescript-eslint/parser from 5.13.0 to 5.14.0 (#23) (diff) | |
download | ee4511w-web-d16cb71aa6b74358442dc38d87814c9f75662e93.tar ee4511w-web-d16cb71aa6b74358442dc38d87814c9f75662e93.tar.gz ee4511w-web-d16cb71aa6b74358442dc38d87814c9f75662e93.tar.bz2 ee4511w-web-d16cb71aa6b74358442dc38d87814c9f75662e93.tar.lz ee4511w-web-d16cb71aa6b74358442dc38d87814c9f75662e93.tar.xz ee4511w-web-d16cb71aa6b74358442dc38d87814c9f75662e93.tar.zst ee4511w-web-d16cb71aa6b74358442dc38d87814c9f75662e93.zip |
Add and run a formatter
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | .vscode/launch.json | 32 | ||||
-rw-r--r-- | .vscode/settings.json | 20 |
2 files changed, 24 insertions, 28 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 3220b3d..3ae875c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,18 +1,16 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "name": "Launch Program", - "program": "${workspaceFolder}/src/index.ts", - "preLaunchTask": "npm: build", - "outFiles": [ - "${workspaceFolder}/dist/**/*.js" - ] - } - ] -}
\ No newline at end of file + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "program": "${workspaceFolder}/src/index.ts", + "preLaunchTask": "npm: build", + "outFiles": ["${workspaceFolder}/dist/**/*.js"] + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 3f638b5..82ef2a7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,13 +1,11 @@ { - "files.exclude": { - "**/*.js": { - "when": "$(basename).ts" - }, - "**/**.js": { - "when": "$(basename).tsx" - } + "files.exclude": { + "**/*.js": { + "when": "$(basename).ts" }, - "cSpell.words": [ - "fileupload" - ] -}
\ No newline at end of file + "**/**.js": { + "when": "$(basename).tsx" + } + }, + "cSpell.words": ["fileupload"] +} |