diff --git a/.gitignore b/.gitignore index 72e8fca..7983ad4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ node_modules/ data/ *.env -.vscode/ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..3630f0d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // 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 Steam", + "outputCapture": "std", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/steam-games.js", + "env": { + "STEAM_JSON": "1", + "STEAM_GAMERPOWER": "1" + } + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..b85ca10 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + // https://eslint.style/guide/faq#vs-code + "editor.formatOnSave": true, + "editor.formatOnSaveMode": "modifications", + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + }, + "eslint.experimental.useFlatConfig": true, +} \ No newline at end of file diff --git a/steam-games.json b/steam-games.json deleted file mode 100644 index 3e58128..0000000 --- a/steam-games.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "https://store.steampowered.com/app/2447060/Monster_Tiles_TD/" - }, - { - "url": "https://store.steampowered.com/app/2568880/The_Hardest_Game_Ever/" - } -]