美文网首页
个人vscode配置setting.json

个人vscode配置setting.json

作者: 第十人i | 来源:发表于2020-01-30 14:21 被阅读0次

    {
    “workbench.iconTheme”: “material-icon-theme”,
    “editor.fontSize”: 18,
    //字体文件
    “editor.fontFamily”: “JetBrains Mono”,
    “editor.formatOnSave”: true,
    “java.configuration.checkProjectSettingsExclusions”: false,
    “typescript.updateImportsOnFileMove.enabled”: “never”,
    “cSpell.enabledLanguageIds”: [
    “asciidoc”,
    “c”,
    “cpp”,
    “csharp”,
    “css”,
    “git-commit”,
    “go”,
    “handlebars”,
    “haskell”,
    “html”,
    “jade”,
    “java”,
    “javascriptreact”,
    “json”,
    “jsonc”,
    “latex”,
    “less”,
    “markdown”,
    “php”,
    “plaintext”,
    “pug”,
    “python”,
    “restructuredtext”,
    “rust”,
    “scala”,
    “scss”,
    “text”,
    “typescript”,
    “typescriptreact”,
    “yaml”,
    “yml”
    ],
    “javascript.updateImportsOnFileMove.enabled”: “always”,
    “[typescriptreact]”: {},
    “editor.tabSize”: 2,
    “editor.detectIndentation”: false, // 全部统一成 2 空格缩进
    “eslint.enable”: true, //是否开启 vscode 的 eslint
    “editor.codeActionsOnSave”: {
    “source.fixAll.eslint”: true
    },
    “eslint.options”: { //指定 vscode 的 eslint 所处理的文件的后缀
    “extensions”: [
    “.js”,
    “.jsx”,
    “.ts”,
    “.tsx”
    ]
    },
    “eslint.validate”: [ //确定校验准则
    “javascript”,
    “javascriptreact”,
    “html”,
    “typescript”,
    “typescriptreact”
    ],
    “search.followSymlinks”: false,
    “files.exclude”: {
    “/.git”: true,
    “/.svn”: true,
    “/.hg”: true,
    “/CVS”: true,
    “/.DS_Store”: true,
    “/tmp”: true,
    // “/node_modules”: true,
    “/bower_components”: true,
    // “/dist”: true
    },
    “files.watcherExclude”: {
    “/.git/objects/“: true,
    “/.git/subtree-cache/“: true,
    // “/node_modules/“: true,
    “/tmp/“: true,
    “/bower_components/“: true,
    “/dist/**“: true
    },
    “explorer.confirmDelete”: false
    }

    相关文章

      网友评论

          本文标题:个人vscode配置setting.json

          本文链接:https://www.haomeiwen.com/subject/uymithtx.html