1. // 关闭必须使用单引号
    2. "quotes": [0, "single"],
    3. // 允许多余的换行
    4. "no-multi-spaces": 0,
    5. 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    6. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    7. 'prefer-promise-reject-errors': 0,
    8. 'space-unary-ops': 0,
    9. 'no-unused-expressions': 0,
    10. 'no-useless-return': 0,
    11. 'standard/no-callback-literal': 0,
    12. 'import/first': 0,
    13. 'import/export': 0,
    14. 'no-mixed-operators': 0,
    15. 'no-use-before-define': 0,
    16. // 不允许使用分号
    17. 'semi': [2, 'never'],
    18. // 允许使用==
    19. 'eqeqeq': 0,
    20. // 缩进使用不做限制
    21. 'indent': 2,
    22. // 允许使用tab
    23. 'no-tabs': 0,
    24. // 函数圆括号之前没有空格
    25. 'space-before-function-paren': [2, 'never'],
    26. // 不要求块内空格填充格式
    27. 'padded-blocks': 0,
    28. // 不限制变量一起声明
    29. 'one-var': 0,
    30. // 条件语句中复制操作符需要用圆括号括起来
    31. 'no-cond-assign': [2, 'except-parens'],
    32. // 允许使用条件表达式使用常量
    33. 'no-constant-condition': 2,
    34. // 单行可忽略大括号,多行不可忽略
    35. 'curly': [2, 'multi-line'],
    36. // 不允许使用var变量
    37. 'no-var': 2,
    38. // 不允许出现多个空格
    39. 'no-multi-spaces': ['error', { ignoreEOLComments: true }],
    40. 'camelcase': 0,
    41. // 对象字面量的键值空格风格
    42. 'key-spacing': 2,
    43. // if语句包含一个return语句, else就多余
    44. 'no-else-return': 2,
    45. // 建议将经常出现的数字提取为变量
    46. 'no-magic-numbers': [0, { ignoreArrayIndexes: true }],
    47. // 不允许重复声明变量
    48. 'no-redeclare': [2, { builtinGlobals: true }],
    49. // 立即执行函数风格
    50. 'wrap-iife': [2, 'inside'],
    51. // 不允许圆括号中出现空格
    52. 'space-in-parens': [2, 'never'],
    53. // 确保运算符周围有空格
    54. 'space-infix-ops': 2,
    55. // 强制点号与属性同一行
    56. 'dot-location': [2, 'property'],
    57. // 强制单行代码使用空格
    58. 'block-spacing': [2, 'always'],
    59. // 约束for-in使用hasOwnProperty判断
    60. 'guard-for-in': 0,
    61. // 采用one true brace style大括号风格
    62. 'brace-style': [2, '1tbs', { 'allowSingleLine': true }],
    63. // 统一逗号周围空格风格
    64. 'comma-spacing': [2, { 'before': false, 'after': true }],
    65. // 禁止出现多个空行
    66. 'no-multiple-empty-lines': [2, { 'max': 1, 'maxEOF': 2 }],
    67. // 允许箭头函数不使用圆括号
    68. 'arrow-parens': 0,
    69. // 规范generator函数的使用
    70. 'generator-star-spacing': [2, { 'before': false, 'after': true }],
    71. // 要求在块级
    72. 'lines-around-comment': [2, { 'beforeBlockComment': true, 'afterBlockComment': false, 'beforeLineComment': true, 'afterLineComment': false }]
    73. "off"或者0,不启用这个规则
    74. "warn"或者1,出现问题会有警告
    75. "error"或者2,出现问题会报错