1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "editor.formatOnSave": false,
- // Auto fix
-
- "editor.codeActionsOnSave": {
- "source.fixAll.eslint": "explicit",
- "source.organizeImports": "never",
- "source.fixAll.stylelint": "explicit"
- },
- "eslint.run": "onType",
- "eslint.format.enable": true,
- "stylelint.validate": [
- "vue",
- "scss"
- ],
- "css.validate": false,
- "less.validate": false,
- "files.autoSaveDelay": 500,
- // Enable eslint for all supported languages
- "eslint.validate": [
- "javascript",
- "javascriptreact",
- "typescript",
- "typescriptreact",
- "vue",
- "html",
- "markdown",
- "json",
- "jsonc",
- "yaml",
- "toml",
- "gql",
- "graphql"
- ]
- }
|