From 9eb85404a96658d83fc0168f306adabb8c1c992e Mon Sep 17 00:00:00 2001 From: quanyawei <401863037@qq.com> Date: Tue, 14 Nov 2023 10:31:03 +0800 Subject: [PATCH] Merge branch 'feature_1.0' --- .vscode/settings.json | 242 ++++++++++++++++++++++++----------------------- 1 files changed, 124 insertions(+), 118 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2d94aac..59d224c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,120 +1,126 @@ { - "workbench.iconTheme": "material-icon-theme", - "editor.fontSize": 16, - // -------------------- ������eslint -------------------- - //autoFixedOnSave ���������������������������������������������������(>1.41.0)������ - "editor.codeActionsOnSave": { - "source.fixAll.eslint": true - }, - "eslint.format.enable": true, - //autoFix������������������������������������������������ - "eslint.validate": ["javascript", "vue", "html", "javascriptreact", "vue-html"], - // -------------------- ������eslint -------------------- - // ��������������������������������������� - "editor.defaultFormatter": "esbenp.prettier-vscode", - "[html]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[javascript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[css]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[less]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[json]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - //������������������������������ - "javascript.format.insertSpaceBeforeFunctionParenthesis": false, - // -------------------- vetur ������ -------------------- - // vue������������������������������vetur - "[vue]": { - "editor.defaultFormatter": "octref.vetur" - }, - // ��������������������������������� - "vetur.format.defaultFormatter.html": "js-beautify-html", - // ���vue������js���������������������ts��������������������� - // "vetur.format.defaultFormatter.js": "vscode-typescript", - // ���vue������js���prettier��������������� ��������� - "vetur.format.defaultFormatter.js": "prettier", - "vetur.format.defaultFormatterOptions": { - "js": "prettier", - "js-beautify-html": { - "wrap_attributes": "aligned-multiple" //������������������������������������������������������ - }, - "prettyhtml": { - "tabWidth": 4, // ���������vetur���tabSize������ - "printWidth": 100, //������100������ - "singleQuote": true, //��������������������� - "semi": false, // ���������������; - "wrapAttributes": false, - "sortAttributes": false - }, - //vue������js������ - "prettier": { - "semi": false, // ���������������; - "singleQuote": true, //��������������������� - "trailingComma": "none" //������������������������ - } - }, - // -------------------- vetur ������ -------------------- - // -------------------- koro1FileHeader ������ -------------------- - // ������������ - "fileheader.customMade": { - "Author": "AuthorName", - "Date": "Do not edit", // ������������������(������) - "LastEditors": "AuthorName", // ��������������������� - "LastEditTime": "Do not edit", // ������������������������ - "Description": "" - // "FilePath": "only file name", // ��������������� - // "custom_string_obkoro1_copyright": "Copyright (C) ${now_year} AuthorName. All rights reserved.", - // "custom_string_obkoro1_date": "Do not edit" // ������Date��������������� - }, - // ������������ - "fileheader.cursorMode": { - "description": "", - //"custom_string_obkoro1": "", - "param": "params", - "return": "" - }, - // ��������������� - "fileheader.configObj": { - "createHeader": false, // ��������������������������������������������������� - "autoAdd": false, // ������������������������������������������������������������������������ - "openFunctionParamsCheck": true, //������������������������������������������������������ - "createFileTime": true, // ������������������������������������������false������������������������������������ - "dateFormat": "YYYY-MM-DD HH:mm:ss", // ��������������������������������������������������� - // ��������������������������������������� - "atSymbol": ["@", "@"], // ������������������������������������������������������ @ - "colon": [": ", ": "] // ������������������������������������������������������ : - // ���������������������������Date���LastEditTime���LastEditors���Description���FilePath - // "specialOptions": { - // "Date": "since", - // "LastEditTime": "lastTime", - // "LastEditors": "LastAuthor", - // "Description": "message", - // "FilePath": "������������������������������" - // } - // ������������������ - // "functionParamsShape": "normal", // ������ - // "functionParamsShape": "no bracket", // ��������������� - // "functionParamsShape": "no type", // ������������ - // "functionParamsShape": [ "{", "}"], // ��������������������������������������� {} - // "functionTypeSymbol": "*", // ��������������������������������� * - // ������������������������������������ {*} - // "functionParamsShape": "no type", // ������������ - // "functionTypeSymbol": "" // ��������������������������������� * - }, - // -------------------- koro1FileHeader ������ -------------------- - // -------------------- prettier ������(������������������������.js) -------------------- - "prettier.useEditorConfig": false, // ���������editorConfig��������������������������� - "prettier.semi": false, // ���������������; - "prettier.singleQuote": true, //��������������������� - "prettier.trailingComma": "none", //������������������������ - // -------------------- prettier ������ -------------------- - "git.confirmSync": false, - "security.workspace.trust.untrustedFiles": "open" + "workbench.iconTheme": "material-icon-theme", + "editor.fontSize": 16, + // -------------------- ������eslint -------------------- + //autoFixedOnSave ���������������������������������������������������(>1.41.0)������ + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + }, + "eslint.format.enable": true, + //autoFix������������������������������������������������ + "eslint.validate": [ + "javascript", + "vue", + "html", + "javascriptreact", + "vue-html" + ], + // -------------------- ������eslint -------------------- + // ��������������������������������������� + "editor.defaultFormatter": "esbenp.prettier-vscode", + "[html]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[javascript]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[css]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[less]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[json]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + //������������������������������ + "javascript.format.insertSpaceBeforeFunctionParenthesis": false, + // -------------------- vetur ������ -------------------- + // vue������������������������������vetur + "[vue]": { + "editor.defaultFormatter": "octref.vetur" + }, + // ��������������������������������� + "vetur.format.defaultFormatter.html": "js-beautify-html", + // ���vue������js���������������������ts��������������������� + // "vetur.format.defaultFormatter.js": "vscode-typescript", + // ���vue������js���prettier��������������� ��������� + "vetur.format.defaultFormatter.js": "prettier", + "vetur.format.defaultFormatterOptions": { + "js": "prettier", + "js-beautify-html": { + "wrap_attributes": "aligned-multiple" //������������������������������������������������������ + }, + "prettyhtml": { + "tabWidth": 4, // ���������vetur���tabSize������ + "printWidth": 100, //������100������ + "singleQuote": true, //��������������������� + "semi": false, // ���������������; + "wrapAttributes": false, + "sortAttributes": false + }, + //vue������js������ + "prettier": { + "semi": false, // ���������������; + "singleQuote": true, //��������������������� + "trailingComma": "none" //������������������������ + } + }, + // -------------------- vetur ������ -------------------- + // -------------------- koro1FileHeader ������ -------------------- + // ������������ + "fileheader.customMade": { + "Author": "AuthorName", + "Date": "Do not edit", // ������������������(������) + "LastEditors": "AuthorName", // ��������������������� + "LastEditTime": "Do not edit", // ������������������������ + "Description": "" + // "FilePath": "only file name", // ��������������� + // "custom_string_obkoro1_copyright": "Copyright (C) ${now_year} AuthorName. All rights reserved.", + // "custom_string_obkoro1_date": "Do not edit" // ������Date��������������� + }, + // ������������ + "fileheader.cursorMode": { + "description": "", + //"custom_string_obkoro1": "", + "param": "params", + "return": "" + }, + // ��������������� + "fileheader.configObj": { + "createHeader": false, // ��������������������������������������������������� + "autoAdd": false, // ������������������������������������������������������������������������ + "openFunctionParamsCheck": true, //������������������������������������������������������ + "createFileTime": true, // ������������������������������������������false������������������������������������ + "dateFormat": "YYYY-MM-DD HH:mm:ss", // ��������������������������������������������������� + // ��������������������������������������� + "atSymbol": ["@", "@"], // ������������������������������������������������������ @ + "colon": [": ", ": "] // ������������������������������������������������������ : + // ���������������������������Date���LastEditTime���LastEditors���Description���FilePath + // "specialOptions": { + // "Date": "since", + // "LastEditTime": "lastTime", + // "LastEditors": "LastAuthor", + // "Description": "message", + // "FilePath": "������������������������������" + // } + // ������������������ + // "functionParamsShape": "normal", // ������ + // "functionParamsShape": "no bracket", // ��������������� + // "functionParamsShape": "no type", // ������������ + // "functionParamsShape": [ "{", "}"], // ��������������������������������������� {} + // "functionTypeSymbol": "*", // ��������������������������������� * + // ������������������������������������ {*} + // "functionParamsShape": "no type", // ������������ + // "functionTypeSymbol": "" // ��������������������������������� * + }, + // -------------------- koro1FileHeader ������ -------------------- + // -------------------- prettier ������(������������������������.js) -------------------- + "prettier.useEditorConfig": false, // ���������editorConfig��������������������������� + "prettier.semi": false, // ���������������; + "prettier.singleQuote": true, //��������������������� + "prettier.trailingComma": "none", //������������������������ + // -------------------- prettier ������ -------------------- + "git.confirmSync": false, + "security.workspace.trust.untrustedFiles": "open" } -- Gitblit v1.8.0