星火管控前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 maanden geleden
1234567891011121314151617181920
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: [
  7. "plugin:vue/essential",
  8. "eslint:recommended",
  9. "plugin:prettier/recommended"
  10. ],
  11. parserOptions: {
  12. parser: "@babel/eslint-parser"
  13. },
  14. rules: {
  15. "vue/multi-word-component-names": "off",
  16. // 不使用script-setup
  17. "vue/script-setup-uses-vars": "off"
  18. },
  19. ignorePatterns: ["public/*"] // 忽略 public 文件夹下的所有文件
  20. };