選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

26 行
533 B

  1. /*
  2. * @Author: Do not edit
  3. * @Date: 2023-12-27 16:41:40
  4. * @LastEditTime: 2023-12-28 13:39:09
  5. * @LastEditors: DY
  6. * @Description:
  7. */
  8. module.exports = {
  9. root: true,
  10. env: {
  11. node: true
  12. },
  13. extends: [
  14. 'plugin:vue/essential',
  15. '@vue/standard'
  16. ],
  17. parserOptions: {
  18. parser: '@babel/eslint-parser'
  19. },
  20. rules: {
  21. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  22. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  23. 'vue/multi-word-component-names': 'off'
  24. }
  25. }