settings.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. {
  2. "typescript.tsdk": "./node_modules/typescript/lib",
  3. "volar.tsPlugin": true,
  4. "volar.tsPluginStatus": false,
  5. "npm.packageManager": "pnpm",
  6. "editor.tabSize": 2,
  7. "editor.defaultFormatter": "esbenp.prettier-vscode",
  8. "files.eol": "\n",
  9. "search.exclude": {
  10. "**/node_modules": true,
  11. "**/*.log": true,
  12. "**/*.log*": true,
  13. "**/bower_components": true,
  14. "**/dist": true,
  15. "**/elehukouben": true,
  16. "**/.git": true,
  17. "**/.gitignore": true,
  18. "**/.svn": true,
  19. "**/.DS_Store": true,
  20. "**/.idea": true,
  21. "**/.vscode": false,
  22. "**/yarn.lock": true,
  23. "**/tmp": true,
  24. "out": true,
  25. "dist": true,
  26. "node_modules": true,
  27. "CHANGELOG.md": true,
  28. "examples": true,
  29. "res": true,
  30. "screenshots": true,
  31. "yarn-error.log": true,
  32. "**/.yarn": true
  33. },
  34. "files.exclude": {
  35. "**/.cache": true,
  36. "**/.editorconfig": true,
  37. "**/.eslintcache": true,
  38. "**/bower_components": true,
  39. "**/.idea": true,
  40. "**/tmp": true,
  41. "**/.git": true,
  42. "**/.svn": true,
  43. "**/.hg": true,
  44. "**/CVS": true,
  45. "**/.DS_Store": true
  46. },
  47. "files.watcherExclude": {
  48. "**/.git/objects/**": true,
  49. "**/.git/subtree-cache/**": true,
  50. "**/.vscode/**": true,
  51. "**/node_modules/**": true,
  52. "**/tmp/**": true,
  53. "**/bower_components/**": true,
  54. "**/dist/**": true,
  55. "**/yarn.lock": true
  56. },
  57. "stylelint.enable": true,
  58. "stylelint.validate": ["css", "less", "postcss", "scss", "vue", "sass"],
  59. "path-intellisense.mappings": {
  60. "/@/": "${workspaceRoot}/src"
  61. },
  62. "[javascriptreact]": {
  63. "editor.defaultFormatter": "esbenp.prettier-vscode"
  64. },
  65. "[typescript]": {
  66. "editor.defaultFormatter": "vscode.typescript-language-features"
  67. },
  68. "[typescriptreact]": {
  69. "editor.defaultFormatter": "esbenp.prettier-vscode"
  70. },
  71. "[html]": {
  72. "editor.defaultFormatter": "esbenp.prettier-vscode"
  73. },
  74. "[css]": {
  75. "editor.defaultFormatter": "esbenp.prettier-vscode"
  76. },
  77. "[less]": {
  78. "editor.defaultFormatter": "esbenp.prettier-vscode"
  79. },
  80. "[scss]": {
  81. "editor.defaultFormatter": "esbenp.prettier-vscode"
  82. },
  83. "[markdown]": {
  84. "editor.defaultFormatter": "esbenp.prettier-vscode"
  85. },
  86. "editor.codeActionsOnSave": {
  87. "source.fixAll.eslint": true
  88. },
  89. "[vue]": {
  90. "editor.codeActionsOnSave": {
  91. "source.fixAll.eslint": true,
  92. "source.fixAll.stylelint": true
  93. }
  94. },
  95. "i18n-ally.localesPaths": ["src/locales/lang"],
  96. "i18n-ally.keystyle": "nested",
  97. "i18n-ally.sortKeys": true,
  98. "i18n-ally.namespace": true,
  99. "i18n-ally.pathMatcher": "{locale}/{namespaces}.{ext}",
  100. "i18n-ally.enabledParsers": ["ts"],
  101. "i18n-ally.sourceLanguage": "en",
  102. "i18n-ally.displayLanguage": "zh-CN",
  103. "i18n-ally.enabledFrameworks": ["vue", "react"],
  104. "cSpell.words": [
  105. "vben",
  106. "windi",
  107. "browserslist",
  108. "tailwindcss",
  109. "esnext",
  110. "antv",
  111. "tinymce",
  112. "qrcode",
  113. "sider",
  114. "pinia",
  115. "sider",
  116. "nprogress",
  117. "INTLIFY",
  118. "stylelint",
  119. "esno",
  120. "vitejs",
  121. "sortablejs",
  122. "mockjs",
  123. "codemirror",
  124. "iconify",
  125. "commitlint",
  126. "vditor",
  127. "echarts",
  128. "cropperjs",
  129. "logicflow",
  130. "vueuse",
  131. "zxcvbn",
  132. "lintstagedrc",
  133. "brotli",
  134. "tailwindcss",
  135. "sider",
  136. "pnpm",
  137. "antd"
  138. ],
  139. "vetur.format.scriptInitialIndent": true,
  140. "vetur.format.styleInitialIndent": true,
  141. "vetur.validation.script": false
  142. }