Skip to content

Instantly share code, notes, and snippets.

@GabriellArthur
Forked from diego3g/settings.json
Last active May 15, 2024 12:57
Show Gist options
  • Save GabriellArthur/0ac8f479719bf08a410cd726ef85f074 to your computer and use it in GitHub Desktop.
Save GabriellArthur/0ac8f479719bf08a410cd726ef85f074 to your computer and use it in GitHub Desktop.
VSCode Settings (Updated)
{
"editor.suggestSelection": "first",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"typescript.enablePromptUseWorkspaceTsdk": true,
"extensions.autoUpdate": true,
"editor.renderControlCharacters": true,
"files.autoSave": "afterDelay",
"editor.detectIndentation": false,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off",
"editor.suggest.insertMode": "replace",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
},
"dart.previewFlutterUiGuides": true,
"dart.flutterCreateAndroidLanguage": "java",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"dart.showInspectorNotificationsForWidgetErrors": false,
"dart.flutterSdkPath": "/Users/{USER}/fvm/versions/3.22.0/bin",
"git.ignoreMissingGitWarning": true,
"editor.fontSize": 15,
"editor.lineHeight": 1.8,
"editor.rulers": [120],
"editor.fontFamily": "Fira Code",
// "editor.fontFamily": "JetBrains Mono",
// "editor.fontFamily": "'Monaspace Neon', monospace",
"editor.fontLigatures": true,
"editor.renderLineHighlight": "gutter",
"workbench.startupEditor": "newUntitledFile",
"explorer.compactFolders": false,
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": false,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.semanticHighlighting.enabled": false,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"package.json": "package*, .eslint*, .gitignore, .npmrc, .nvmrc, .prettier*, , esbuild*, tsconfig*, pnpm-lock*, bun.lockb, jest.*, .puppeteerrc.*, localazy.*",
"pubspec.yaml": "*.yaml, pubspec.lock",
"*_datasource.dart": "*_.dart",
".env": ".env*",
".gitignore": ".flutter-plugins*, .metadata",
},
"material-icon-theme.folders.associations": {
"global_state": "global",
"ui": "layout",
"bloc": "controller",
"features": "other",
"presentation": "layout",
"data": "database",
"datasources": "database",
"repositories": "api",
"entities": "app",
"usecases": "custom",
"domain": "rules",
"platform": "context",
"create": "tasks",
"store-client": "pipe",
"middy-rediredi-auth": "guard",
"billing": "guard",
"dto": "cluster",
"dtos": "cluster",
"commons": "shared",
"webview": "webpack",
"notification": "mail",
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"workbench.tree.indent": 15,
"debug.disassemblyView.showSourceCode": false,
"editor.codeLensFontFamily": "Fira Code",
"markdown.preview.breaks": true,
"material-icon-theme.folders.theme": "specific",
"dart.analyzerPath": null,
"dart.flutterCreateOrganization": null,
"security.workspace.trust.untrustedFiles": "open",
"git.autofetch": true,
"git.confirmSync": false,
"editor.tabSize": 2,
"editor.inlineSuggest.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": true,
"yaml": true,
"dart": true
},
"editor.foldingImportsByDefault": true,
"editor.stickyScroll.enabled": true,
"editor.formatOnSaveMode": "modifications",
"eslint.codeActionsOnSave.rules": null,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.inlayHints.enabled": "on",
"editor.inlayHints.padding": true,
"javascript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.referencesCodeLens.enabled": true,
"workbench.colorCustomizations": {
"editorInlayHint.background": "#414141",
"editorInlayHint.foreground": "#b9b9b9"
},
"terminal.integrated.gpuAcceleration": "off",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"dart.warnWhenEditingFilesInPubCache": false,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"redhat.telemetry.enabled": true,
"workbench.iconTheme": "material-icon-theme",
"html.format.wrapLineLength": 100,
"dart.lineLength": 100,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"editor.accessibilitySupport": "off",
"dart.debugExternalPackageLibraries": true,
"dart.debugSdkLibraries": false,
"terminal.integrated.lineHeight": 0,
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.fontSize": 15,
"editor.minimap.showSlider": "always",
"git.ignoreRebaseWarning": true,
"errorLens.excludeBySource": ["ts(2454)", "ts(2739)"],
"editor.formatOnSave": true,
"notebook.formatOnSave.enabled": true,
"sonarlint.connectedMode.connections.sonarcloud": [
{
"organizationKey": "{ORG_ID}",
"connectionId": "{ORG_ID}"
}
],
"githubPullRequests.pullBranch": "never",
"dart.showDebuggerNumbersAsHex": true,
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"gitlens.views.contributors.showStatistics": true,
"gitlens.views.contributors.showAllBranches": true,
"cSpell.userWords": [
"inappwebview",
"vsync"
],
"gitlens.views.commitDetails.files.layout": "tree",
"githubPullRequests.fileListLayout": "tree",
"workbench.activityBar.location": "top",
"workbench.colorTheme": "One Monokai",
"diffEditor.ignoreTrimWhitespace": false,
"dart.warnWhenEditingFilesOutsideWorkspace": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment