Feast 2.0!
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

29 строки
682 B

  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: [
  7. 'plugin:vue/essential',
  8. '@vue/standard',
  9. '@vue/typescript/recommended',
  10. ],
  11. parserOptions: {
  12. ecmaVersion: 2020
  13. },
  14. rules: {
  15. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  16. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  17. 'no-useless-constructor': 'off',
  18. '@typescript-eslint/no-unused-vars': 'off',
  19. 'quotes': 'off',
  20. 'function-paren-newline': ['error', 'multiline-arguments'],
  21. '@typescript-eslint/member-ordering': ['warn'],
  22. 'indent': 'off',
  23. '@typescript-eslint/indent': [
  24. 'error',
  25. 2
  26. ],
  27. }
  28. }