win vscode 自动生成签名


{
	// 換行
	"editor.wordWrap": "on",
	// 是否允许自定义的snippet片段提示
	"editor.snippetSuggestions": "top",
	// vscode默认启用了根据文件类型自动设置tabsize的选项 不检查缩进,保存后统一按设置项來设置
	"editor.detectIndentation": false,
	// 重新设定tabsize 代码缩进修改成 2 个空格
	"editor.tabSize": 4,
	// #每次保存的时候自动格式化
	"editor.formatOnSave": false,
	// #每次保存的时候将代码按eslint格式进行修复 使用eslint 風格使用standard 進行代碼規則限制
	"editor.fontWeight": "200",
	"editor.formatOnType": false,
	"workbench.iconTheme": "vscode-icons-mac",
	"git.confirmSync": false,
	"window.zoomLevel": 0,
	"editor.renderWhitespace": "none",
	"editor.cursorBlinking": "smooth",
	"editor.minimap.enabled": true,
	"editor.minimap.renderCharacters": false,
	"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
	"editor.codeLens": true,
	// #让函数(名)和后面的括号之间加个空格
	"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
	// #让vue中的js按编辑器自带的ts格式进行格式化
	// "vetur.format.defaultFormatter.js": "vscode-typescript",
	"explorer.confirmDelete": false,
	"[jsonc]": {
		"editor.defaultFormatter": "esbenp.prettier-vscode"
	},
	"[javascript]": {
		"editor.defaultFormatter": "esbenp.prettier-vscode"
	},
	"[json]": {
		"editor.defaultFormatter": "esbenp.prettier-vscode"
	},
	"diffEditor.ignoreTrimWhitespace": false,
	// "terminal.integrated.shell.osx": "zsh",
 
	"files.associations": {
		"*.cjson": "jsonc",
		"*.wxss": "css",
		"*.wxs": "javascript"
	},
	"emmet.includeLanguages": {
		"wxml": "html"
	},
	"window.menuBarVisibility": "visible",
	"git.enableSmartCommit": true,
	"git.autofetch": true,
	"[html]": {
		"editor.defaultFormatter": "vscode.html-language-features"
	},
	"javascript.updateImportsOnFileMove.enabled": "always",
	"workbench.colorTheme": "SynthWave '84",
	// 字體大小
	"editor.fontSize": 15,
	// 設置行高
	"editor.lineHeight": 20,
	"search.followSymlinks": false,
	"workbench.sideBar.location": "left",
	"zenMode.restore": true,
	"breadcrumbs.enabled": false,
	"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
	"[wxml]": {
		"editor.defaultFormatter": "qiu8310.minapp-vscode"
	},
	"javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
	"editor.formatOnPaste": false,
	"editor.cursorStyle": "line-thin",
	"editor.suggestSelection": "first",
	// #每次保存的时候将代码按照 eslint 格式进行修复
	"editor.codeActionsOnSave": {
		"source.fixAll.eslint": true
	},
    "npm.fetchOnlinePackageInfo": false,
    "fileheader.customMade": {
        "Author": "九州县令",
        "Email": "<九州县令@qq.com>",
        "Date": "Do not edit",
        "LastEditors": "九州县令",
        "LastEditTime": "Do not Edit",
        "version": "1.0.0",
        "Descripttion": "",
        "FilePath": "Do not edit", // 文件在项目中的相对路径 自动更新
      },
      "fileheader.cursorMode": {},
    "fileheader.configObj": {
        "createFileTime": true,
        "language": {
            "languagetest": {
                "head": "/$$",
                "middle": " $ @",
                "end": " $/",
                "functionSymbol": {
                    "head": "/** ",
                    "middle": " * @",
                    "end": " */"
                },
                "functionParams": "js"
            }
        },
        "autoAdd": true,
        "autoAddLine": 100,
        "autoAlready": true,
        "annotationStr": {
            "head": "/*",
            "middle": " * @",
            "end": " */",
            "use": false
        },
        "headInsertLine": {
            "php": 2,
            "sh": 2
        },
        "beforeAnnotation": {
            "文件后缀": "该文件后缀的头部注释之前添加某些内容"
        },
        "afterAnnotation": {
            "文件后缀": "该文件后缀的头部注释之后添加某些内容"
        },
        "specialOptions": {
            "特殊字段": "自定义比如LastEditTime/LastEditors"
        },
        "switch": {
            "newlineAddAnnotation": true
        },
        "supportAutoLanguage": [],
        "prohibitAutoAdd": [
            "json"
        ],
        "folderBlacklist": [
            "node_modules",
            "文件夹禁止自动添加头部注释"
        ],
        "prohibitItemAutoAdd": [
            "项目的全称, 整个项目禁止自动添加头部注释, 可以使用快捷键添加"
        ],
        "moveCursor": true,
        "dateFormat": "YYYY-MM-DD HH:mm:ss",
        "atSymbol": [
            "@",
            "@"
        ],
        "atSymbolObj": {
            "文件后缀": [
                "头部注释@符号",
                "函数注释@符号"
            ]
        },
        "colon": [
            ": ",
            ": "
        ],
        "colonObj": {
            "文件后缀": [
                "头部注释冒号",
                "函数注释冒号"
            ]
        },
        "filePathColon": "路径分隔符替换",
        "showErrorMessage": false,
        "writeLog": false,
        "wideSame": false,
        "wideNum": 13,
        "functionWideNum": 0,
        "CheckFileChange": false,
        "createHeader": false,
        "useWorker": false,
        "designAddHead": false,
        "headDesignName": "random",
        "headDesign": false,
        "cursorModeInternalAll": {},
        "openFunctionParamsCheck": true,
        "functionParamsShape": [
            "{",
            "}"
        ],
        "functionBlankSpaceAll": {},
        "functionTypeSymbol": "*",
        "typeParamOrder": "type param",
        "customHasHeadEnd": {},
        "throttleTime": 60000,
        "functionParamAddStr": "",
        "NoMatchParams": "no show param"
    }
}

你可能感兴趣的:(vscode,vscode,ide,编辑器)