vscode eslint配置

koroFileHeader插件

setting.join文件

{

    // eslint格式化字符串

    "editor.codeActionsOnSave": {

        "source.fixAll.eslint": true

    },

    "fileheader.customMade": {    //此为头部注释

        "Autor": "gfl",

        "Date": "Do not edit",

        "LastEditors": "gfl",

        "LastEditTime": "Do not edit",

        "description": "file content",

    },

    "fileheader.cursorMode": {  //此为函数注释

        "param": "",

        "return": "",

        "author":"gfl",

        "description":"",

    },

    "javascript.updateImportsOnFileMove.enabled": "always",

    "window.zoomLevel": 1,

    "svn.layout.branchesRegex": "",

    //vscode配置svn

    "workbench.enableExperiments": false,

    "workbench.settings.enableNaturalLanguageSearch": false,

    "svn.path": "C://Program Files//TortoiseSVN//bin",

    "svn.default.encoding": "",

    "svn.conflicts.autoResolve": true,

    "eslint.codeAction.disableRuleComment": {

    

    },

    "npm.exclude": "",

    "files.autoSave": "off",

    "[javascript]": {

        "editor.defaultFormatter": "vscode.typescript-language-features"

    },

    "cssrem.fixedDigits": 4,

    "cssrem.rootFontSize": 50,

    "dart.flutterSdkPath": "D:\\flutter_windows_1.17.1-stable\\flutter",

    "dart.analyzerPath": null,

    "dart.env": {},

      //执行dart出现乱码的接近方式

    "code-runner.runInTerminal": true,

    "code-runner.executorMap": {

        "code-runner.runInTerminal": true

    },

    "[html]": {

        "editor.defaultFormatter": "vscode.html-language-features"

    }

}

猜你喜欢

转载自blog.csdn.net/weixin_39418338/article/details/106943006