aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2024-04-15 07:16:37 -0600
committerLibravatar GitHub <noreply@github.com>2024-04-15 07:16:37 -0600
commitcbba61b40112b41c43285a1a279969e68df1a2e9 (patch)
tree6f2e95326033396c5f7b79b48e5a3febb0877ff3 /.vscode
parent6.7.3-nightly.10 [skip ci] (diff)
downloadferdium-app-cbba61b40112b41c43285a1a279969e68df1a2e9.tar.gz
ferdium-app-cbba61b40112b41c43285a1a279969e68df1a2e9.tar.zst
ferdium-app-cbba61b40112b41c43285a1a279969e68df1a2e9.zip
refactor: project maintenance (#1682)
- remove redundant `@adonisjs/auth`, `@adonisjs/session` and `@emotion/react` dependencies - remove `.vscode` folder - clean up some TS and ESLint issues - migrate from deprecated "husky install" to "husky"
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/extensions.json31
-rw-r--r--.vscode/launch.json87
-rw-r--r--.vscode/settings.json47
-rw-r--r--.vscode/tasks.json18
4 files changed, 0 insertions, 183 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
deleted file mode 100644
index 9f26c98d1..000000000
--- a/.vscode/extensions.json
+++ /dev/null
@@ -1,31 +0,0 @@
1{
2 "recommendations": [
3 "esbenp.prettier-vscode",
4 "dbaeumer.vscode-eslint",
5 "codezombiech.gitignore",
6 "editorconfig.editorconfig",
7 "steoates.autoimport",
8 "formulahendry.auto-rename-tag",
9 "streetsidesoftware.code-spell-checker",
10 "naumovs.color-highlight",
11 "mkhl.direnv",
12 "ms-azuretools.vscode-docker",
13 "usernamehw.errorlens",
14 "dsznajder.es7-react-js-snippets",
15 "mhutchie.git-graph",
16 "vincaslt.highlight-matching-tag",
17 "eamodio.gitlens",
18 "jbockle.jbockle-format-files",
19 "wix.vscode-import-cost",
20 "visualstudioexptteam.intellicode-api-usage-examples",
21 "visualstudioexptteam.vscodeintellicode",
22 "orta.vscode-jest",
23 "pkief.material-icon-theme",
24 "techer.open-in-browser",
25 "christian-kohler.path-intellisense",
26 "ofhumanbondage.react-proptypes-intellisense",
27 "jingkaizhao.vscode-redux-devtools",
28 "planbcoding.vscode-react-refactor",
29 "redhat.vscode-yaml"
30 ]
31}
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 24002a53b..000000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,87 +0,0 @@
1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "name": "PowerShell Launch Current File",
6 "type": "PowerShell",
7 "request": "launch",
8 "script": "${file}",
9 "cwd": "${workspaceFolder}"
10 },
11 {
12 "type": "node",
13 "request": "launch",
14 "name": "Ferdium - Test API",
15 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
16 "program": "${workspaceFolder}/build/index.js",
17 "protocol": "inspector",
18 "env": {
19 "NODE_ENV": "development",
20 "DEBUG": "*,-engine.io*,-socket.io*"
21 }
22 },
23 {
24 "type": "node",
25 "request": "launch",
26 "name": "Ferdium – Live API",
27 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
28 "program": "${workspaceFolder}/build/index.js",
29 "protocol": "inspector",
30 "env": {
31 "USE_LIVE_API": "1",
32 "DEBUG": "*,-engine.io*,-socket.io*"
33 }
34 },
35 {
36 "type": "node",
37 "request": "launch",
38 "name": "Ferdium – Local API",
39 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
40 "program": "${workspaceFolder}/build/index.js",
41 "protocol": "inspector",
42 "env": {
43 "USE_LOCAL_API": "1",
44 "DEBUG": "*,-engine.io*,-socket.io*"
45 }
46 },
47 {
48 "type": "node",
49 "request": "launch",
50 "name": "(Win Sim) Ferdium - Test API",
51 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
52 "program": "${workspaceFolder}/build/index.js",
53 "protocol": "inspector",
54 "env": {
55 "NODE_ENV": "development",
56 "OS_PLATFORM": "win32",
57 "DEBUG": "*,-engine.io*,-socket.io*"
58 }
59 },
60 {
61 "type": "node",
62 "request": "launch",
63 "name": "(Win Sim) Ferdium – Live API",
64 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
65 "program": "${workspaceFolder}/build/index.js",
66 "protocol": "inspector",
67 "env": {
68 "USE_LIVE_API": "1",
69 "OS_PLATFORM": "win32",
70 "DEBUG": "*,-engine.io*,-socket.io*"
71 }
72 },
73 {
74 "type": "node",
75 "request": "launch",
76 "name": "(Win Sim) Ferdium – Local API",
77 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
78 "program": "${workspaceFolder}/build/index.js",
79 "protocol": "inspector",
80 "env": {
81 "USE_LOCAL_API": "1",
82 "OS_PLATFORM": "win32",
83 "DEBUG": "*,-engine.io*,-socket.io*"
84 }
85 }
86 ]
87}
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index 42a06efe9..000000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,47 +0,0 @@
1{
2 "prettier.singleQuote": true,
3 "js/ts.implicitProjectConfig.experimentalDecorators": true,
4 "yaml.schemas": {
5 "https://json.schemastore.org/github-issue-config.json": ".github/ISSUE_TEMPLATE/config.yml"
6 },
7
8 // "editor.fontFamily": "Fira Code",
9 // "editor.fontLigatures": true,
10 "editor.detectIndentation": false,
11 "editor.guides.bracketPairs": "active",
12 "editor.codeActionsOnSave": {
13 "source.fixAll": "explicit",
14 "source.fixAll.eslint": "explicit"
15 },
16
17 // "explorer.confirmDelete": false,
18 // "explorer.confirmDragAndDrop": false,
19
20 // "eslint.runtime": "node",
21 "eslint.format.enable": true,
22 "eslint.workingDirectories": [{ "mode": "auto" }],
23 // "eslint.packageManager": "npm",
24 "eslint.validate": [
25 "javascript",
26 "javascriptreact",
27 "typescript",
28 "typescriptreact"
29 ],
30 "editor.defaultFormatter": "esbenp.prettier-vscode",
31
32 // "workbench.colorTheme": "Visual Studio Dark",
33 // "workbench.iconTheme": "material-icon-theme",
34
35 "terminal.integrated.sendKeybindingsToShell": true,
36 // "terminal.integrated.copyOnSelection": true,
37 "terminal.integrated.defaultProfile.osx": "zsh",
38 "terminal.integrated.cursorBlinking": true,
39
40 "git.enableSmartCommit": true,
41 "diffEditor.ignoreTrimWhitespace": false,
42
43 // "formatFiles.runOrganizeImports": true,
44
45 "javascript.preferences.importModuleSpecifier": "relative",
46 "typescript.preferences.importModuleSpecifier": "relative"
47}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
deleted file mode 100644
index 1cc1b79e7..000000000
--- a/.vscode/tasks.json
+++ /dev/null
@@ -1,18 +0,0 @@
1{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "type": "pnpm",
6 "script": "dev",
7 "group": {
8 "kind": "build",
9 "isDefault": true
10 }
11 },
12 {
13 "type": "pnpm",
14 "script": "lint",
15 "group": "test"
16 }
17 ]
18}