diff --git a/EasyTier.code-workspace b/EasyTier.code-workspace index 107b77b..fde50c1 100644 --- a/EasyTier.code-workspace +++ b/EasyTier.code-workspace @@ -10,78 +10,5 @@ "path": "easytier" } ], - "settings": { - "i18n-ally.localesPaths": [ - "locales" - ], - // Enable the ESlint flat config support - "eslint.experimental.useFlatConfig": true, - // Disable the default formatter, use eslint instead - "prettier.enable": false, - "editor.formatOnSave": false, - // Auto fix - "editor.codeActionsOnSave": { - "source.fixAll.eslint": "explicit", - "source.organizeImports": "never" - }, - // Silent the stylistic rules in you IDE, but still auto fix them - "eslint.rules.customizations": [ - { - "rule": "style/*", - "severity": "off" - }, - { - "rule": "format/*", - "severity": "off" - }, - { - "rule": "*-indent", - "severity": "off" - }, - { - "rule": "*-spacing", - "severity": "off" - }, - { - "rule": "*-spaces", - "severity": "off" - }, - { - "rule": "*-order", - "severity": "off" - }, - { - "rule": "*-dangle", - "severity": "off" - }, - { - "rule": "*-newline", - "severity": "off" - }, - { - "rule": "*quotes", - "severity": "off" - }, - { - "rule": "*semi", - "severity": "off" - } - ], - // Enable eslint for all supported languages - "eslint.validate": [ - "javascript", - "javascriptreact", - "typescript", - "typescriptreact", - "vue", - "html", - "markdown", - "json", - "jsonc", - "yaml", - "toml", - "gql", - "graphql" - ] - } + "settings": {} } \ No newline at end of file diff --git a/easytier-gui/.gitignore b/easytier-gui/.gitignore index edc4b42..3ab2416 100644 --- a/easytier-gui/.gitignore +++ b/easytier-gui/.gitignore @@ -15,6 +15,7 @@ dist-ssr # Editor directories and files .vscode/ !.vscode/extensions.json +!.vscode/settings.json .idea .DS_Store *.suo diff --git a/easytier-gui/.vscode/settings.json b/easytier-gui/.vscode/settings.json new file mode 100644 index 0000000..6bf155a --- /dev/null +++ b/easytier-gui/.vscode/settings.json @@ -0,0 +1,74 @@ +{ + "i18n-ally.localesPaths": [ + "locales" + ], + // Enable the ESlint flat config support + "eslint.experimental.useFlatConfig": true, + // Disable the default formatter, use eslint instead + "prettier.enable": false, + "editor.formatOnSave": false, + // Auto fix + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit", + "source.organizeImports": "never" + }, + // Silent the stylistic rules in you IDE, but still auto fix them + "eslint.rules.customizations": [ + { + "rule": "style/*", + "severity": "off" + }, + { + "rule": "format/*", + "severity": "off" + }, + { + "rule": "*-indent", + "severity": "off" + }, + { + "rule": "*-spacing", + "severity": "off" + }, + { + "rule": "*-spaces", + "severity": "off" + }, + { + "rule": "*-order", + "severity": "off" + }, + { + "rule": "*-dangle", + "severity": "off" + }, + { + "rule": "*-newline", + "severity": "off" + }, + { + "rule": "*quotes", + "severity": "off" + }, + { + "rule": "*semi", + "severity": "off" + } + ], + // Enable eslint for all supported languages + "eslint.validate": [ + "javascript", + "javascriptreact", + "typescript", + "typescriptreact", + "vue", + "html", + "markdown", + "json", + "jsonc", + "yaml", + "toml", + "gql", + "graphql" + ] +} \ No newline at end of file