': 0, //在调用super()之前不能使用this或super
'no-undef': 2, //不能有未定义的变量
'no-use-before-define': 2, //未定义前不能使用...': 1, //在JSX中验证右括号位置
'react/jsx-curly-spacing': [2, {'when': 'never', 'children': true}], //在JSX属性和表达式中加强或禁止大括号内的空格...'react/jsx-indent-props': [2, 2], //验证JSX中的props缩进
'react/jsx-key': 2, //在数组或迭代器中验证JSX具有key属性...'react/jsx-max-props-per-line': [1, {'maximum': 1}], // 限制JSX中单行上的props的最大数量
'react/jsx-no-bind':...0, //JSX中不允许使用箭头函数和bind
'react/jsx-no-duplicate-props': 2, //防止在JSX中重复的props
'react/jsx-no-literals