.eslintrc.js 921 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * @Author: wenjie 1454560336@qq.com
  3. * @Date: 2024-12-11 11:32:12
  4. * @LastEditors: wenjie 1454560336@qq.com
  5. * @LastEditTime: 2024-12-18 14:01:53
  6. * @FilePath: \mall4vs-bbc\.eslintrc.js
  7. * @Description:
  8. *
  9. * Copyright (c) 2024 by ${git_name_email}, All Rights Reserved.
  10. */
  11. // https://eslint.org/docs/user-guide/configuring
  12. module.exports = {
  13. // root: true,
  14. // parser: 'babel-eslint',
  15. // parserOptions: {
  16. // sourceType: 'module'
  17. // },
  18. // env: {
  19. // browser: true,
  20. // },
  21. // // https://github.com/standard/standard/blob/master/docs/RULES-en.md
  22. // extends: 'standard',
  23. // // required to lint *.vue files
  24. // plugins: [
  25. // 'html'
  26. // ],
  27. // // add your custom rules here
  28. // rules: {
  29. // // allow async-await
  30. // 'generator-star-spacing': 'off',
  31. // // allow debugger during development
  32. // 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
  33. // }
  34. }