Untitled

 avatar
unknown
plain_text
a year ago
4.3 kB
5
Indexable
{
    "liveServer.settings.CustomBrowser": "chrome:PrivateMode",
    "liveServer.settings.port": 5500,
    "liveServer.settings.multiRootWorkspaceName": "",
    "liveServer.settings.ignoreFiles": [
        ".vscode/**",
        "**/*.scss",
        "**/*.sass",
        "**/*.ts"
    ],
    "liveServer.settings.root": "/",
    "files.autoSaveDelay": 5,
    "liveServer.settings.host": "localhost",
    "liveServer.settings.donotShowInfoMsg": true,
    "editor.accessibilitySupport": "off",
    "[javascript]": {
        "editor.defaultFormatter": "dbaeumer.vscode-eslint"
    },
    "[jsonc]": {
        "editor.defaultFormatter": null
    },
    "color-highlight.markerType": "dot-before",
    "color-highlight.languages": [
        "!css",
        "*"
    ],
    "workbench.colorTheme": "Dracula",
    "debug.javascript.autoAttachFilter": "always",
    "terminal.integrated.profiles.windows": {
        "PowerShell": {
            "source": "PowerShell",
            "icon": "terminal-powershell"
        },
        "Command Prompt": {
            "path": [
                "${env:windir}\\Sysnative\\cmd.exe",
                "${env:windir}\\System32\\cmd.exe"
            ],
            "args": [],
            "icon": "terminal-cmd"
        },
        "Git Bash": {
            "source": "Git Bash"
        },
        "Ubuntu-22.04 (WSL)": {
            "path": "C:\\Windows\\System32\\wsl.exe",
            "args": [
                "-d",
                "Ubuntu-22.04"
            ]
        }
    },
    "terminal.integrated.defaultProfile.windows": "Ubuntu-22.04 (WSL)",
    "editor.defaultFormatter": null,
    "editor.formatOnSave": true,
    "editor.format.enable": true,
    "liveServer.settings.wait": 3,
    "liveServer.settings.AdvanceCustomBrowserCmdLine": "",
    "liveServer.settings.fullReload": true,
    "editor.wordWrapColumn": 200,
    "prettier.printWidth": 200,
    "editor.wordWrap": "wordWrapColumn",
    "editor.rulers": [
        200
    ],
    "html.format.wrapLineLength": 0,
    "prettier.bracketSpacing": false,
    "prettier.useEditorConfig": false,
    "security.workspace.trust.untrustedFiles": "open",
    "git.openRepositoryInParentFolders": "always",
    "files.autoSave": "afterDelay",
    "editor.minimap.enabled": false,
    "editor.tabSize": 2,
    "files.eol": "\n",
    "editor.hover.delay": 500,
    "jest.coverageColors": {
        "covered": "rgba(9, 156, 65, 0.9)",
        "uncovered": "rgba(121, 31, 10, 0.3)",
        "partially-covered": "rgba(235, 198, 52, 0.1)"
    },
    "jest.monitorLongRun": "",
    // ESLINT
    "eslint.format.enable": true,
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": "explicit",
        "source.fixAll.stylelint": "explicit",
    },
    "Codegeex.Privacy": true,
    "explorer.confirmDragAndDrop": false,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "emojisense.languages": {
        "markdown": true,
        "plaintext": {
            "markupCompletionsEnabled": false,
            "emojiDecoratorsEnabled": false
        },
        "scminput": true,
        "git-commit": true,
        "json": true,
        "typescript": true,
        "typescriptreact": true,
        "javascript": true,
        "javascriptreact": true,
        "css": true,
    },
    "typescript.updateImportsOnFileMove.enabled": "always",
    "workbench.iconTheme": "material-icon-theme",
    "github.copilot.enable": {
        "*": false,
        "plaintext": false,
        "markdown": "true",
        "scminput": false
    },
    "workbench.editor.empty.hint": "hidden",
    "database-client.completionTriggerKey": [
        " ",
        "@",
        "."
    ],
    "database-client.defaultSelectLimit": 10000,
    "explorer.compactFolders": false,
    "github.copilot.advanced": {},
    "editor.stickyScroll.enabled": false,
    "github.gitProtocol": "ssh",
    "github.copilot.chat.welcomeMessage": "always",
    "terminal.integrated.scrollback": 100000,

    "[python]": {
        "editor.defaultFormatter": "ms-python.black-formatter",
        "editor.formatOnSave": true,
        "editor.formatOnType": true,
      } 
}
Leave a Comment