summaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
diff options
context:
space:
mode:
authorLibravatar muhamedsalih-tw <104364298+muhamedsalih-tw@users.noreply.github.com>2022-11-16 23:30:39 +0530
committerLibravatar GitHub <noreply@github.com>2022-11-16 18:00:39 +0000
commiteb7b2481f631cec5953265eef4ebc3f2fa7e496a (patch)
tree419d4413f90ece77c0a2204b40948f1a158793d5 /.vscode/settings.json
parent6.2.1-nightly.44 [skip ci] (diff)
downloadferdium-app-eb7b2481f631cec5953265eef4ebc3f2fa7e496a.tar.gz
ferdium-app-eb7b2481f631cec5953265eef4ebc3f2fa7e496a.tar.zst
ferdium-app-eb7b2481f631cec5953265eef4ebc3f2fa7e496a.zip
Transform JSX components to TSX (#755)
* color picker types * Import * SetupAssistant * Services & appear * ServiceWebView * SettingsLayout * ImportantScreen * WorkspaceDrawer * SetupAssistant * chore: update vscode settings * chore: removed stale Import screen component & its tree
Diffstat (limited to '.vscode/settings.json')
-rw-r--r--.vscode/settings.json51
1 files changed, 50 insertions, 1 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 21bfab5db..815aa0cfb 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -3,5 +3,54 @@
3 "js/ts.implicitProjectConfig.experimentalDecorators": true, 3 "js/ts.implicitProjectConfig.experimentalDecorators": true,
4 "yaml.schemas": { 4 "yaml.schemas": {
5 "https://json.schemastore.org/github-issue-config.json": ".github/ISSUE_TEMPLATE/config.yml" 5 "https://json.schemastore.org/github-issue-config.json": ".github/ISSUE_TEMPLATE/config.yml"
6 } 6 },
7
8 // "editor.fontFamily": "Fira Code",
9 // "editor.fontLigatures": true,
10 "editor.detectIndentation": false,
11 "editor.bracketPairColorization.enabled": true,
12 "editor.bracketPairColorization.independentColorPoolPerBracketType": true,
13 "editor.guides.bracketPairs": "active",
14 "editor.codeActionsOnSave": {
15 "source.fixAll": true,
16 "source.fixAll.eslint": true
17 },
18
19 // "explorer.confirmDelete": false,
20 // "explorer.confirmDragAndDrop": false,
21
22 "eslint.enable": true,
23 "eslint.runtime": "node",
24 "eslint.format.enable": true,
25 "eslint.alwaysShowStatus": true,
26 "eslint.workingDirectories": [ { "mode": "auto" } ],
27 // "eslint.packageManager": "npm",
28 "eslint.validate": ["javascript","javascriptreact","typescript","typescriptreact"],
29 "editor.defaultFormatter": "dbaeumer.vscode-eslint",
30 "[javascript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" },
31 "[javascriptreact]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" },
32 "[typescript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" },
33 "[typescriptreact]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" },
34 "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
35 "[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
36
37
38 // "workbench.colorTheme": "Visual Studio Dark",
39 // "workbench.iconTheme": "material-icon-theme",
40
41 "terminal.integrated.sendKeybindingsToShell": true,
42 // "terminal.integrated.copyOnSelection": true,
43 "terminal.integrated.defaultProfile.osx": "zsh",
44 "terminal.integrated.cursorBlinking": true,
45 "terminal.integrated.cursorStyle": "block",
46 "terminal.integrated.shellIntegration.enabled":true,
47
48 "git.mergeEditor": false,
49 "git.enableSmartCommit": true,
50 "diffEditor.ignoreTrimWhitespace": false,
51
52 // "formatFiles.runOrganizeImports": true,
53
54 "javascript.preferences.importModuleSpecifier": "relative",
55 "typescript.preferences.importModuleSpecifier": "relative",
7} 56}