MES手机端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

44 řádky
1.1 KiB

  1. module.exports = {
  2. parserOptions: {
  3. ecmaVersion: 6,
  4. sourceType: 'module',
  5. },
  6. env: {
  7. 'browser': true,
  8. 'commonjs': true,
  9. 'node': true,
  10. },
  11. extends: 'eslint:recommended',
  12. rules: {
  13. 'comma-dangle': 'off',
  14. 'no-console': 'off',
  15. 'no-constant-condition': 'off',
  16. 'no-redeclare': 'off',
  17. 'no-unused-vars': 'off',
  18. 'array-bracket-spacing': 'error',
  19. 'block-spacing': 'error',
  20. 'brace-style': 'error',
  21. 'comma-spacing': 'error',
  22. 'comma-style': 'error',
  23. 'eol-last': 'error',
  24. 'indent': ['error', 2],
  25. 'key-spacing': 'error',
  26. 'keyword-spacing': 'error',
  27. 'linebreak-style': 'error',
  28. 'no-array-constructor': 'error',
  29. 'no-trailing-spaces': 'error',
  30. 'no-unneeded-ternary': 'error',
  31. 'object-curly-newline': 'error',
  32. 'object-curly-spacing': 'error',
  33. 'operator-linebreak': 'error',
  34. 'semi-spacing': 'error',
  35. 'semi': 'error',
  36. 'space-before-blocks': 'error',
  37. 'space-before-function-paren': ['error', 'never'],
  38. 'space-in-parens': 'error',
  39. 'space-infix-ops': 'error',
  40. 'space-unary-ops': 'error',
  41. },
  42. };