@alicd/crui-checkbox-field
Version:
复选框, FormItem + Checkbox【 @alicd/next 】 的功能融合,同时支持了 x-bind 双向绑定, rules 规则配置,name 表单 name 属性
24 lines (23 loc) • 526 B
Plain Text
{
// "extends": "eslint-config-ais/react",
"rules":{
//去除了react 模块 属性或者方法的 按照字母顺序排序规则
"react/sort-comp": 1,
//去除了 不能 new Function 的规则
"no-new-func": 1,
"no-prototype-builtins": 1,
"prefer-rest-params": 1,
"object-curly-spacing": 0,
"no-useless-constructor": 0,
"react/forbid-prop-types": 0
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"parser": "babel-eslint",
"plugins": [
"react"
]
}