@alicd/micro-stark
Version:
cone微应用
38 lines • 853 B
Plain Text
{
"extends": [
"eslint-config-ali/react",
"react-app",
"plugin:jsx-plus/recommended",
"plugin:prettier/recommended"
],
"parser": "babel-eslint",
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"plugins": ["jsx-plus", "prettier"],
"globals": {},
"rules": {
"no-shadow": 0,
"arrow-parens": 0,
"no-param-reassign": 0,
"no-restricted-globals": 0,
"no-nested-ternary": 0,
"prefer-destructuring": 0,
"no-plusplus": 0,
"arrow-body-style": 0,
"comma-dangle": 0,
"radix": 0,
"prefer-const": 0,
"no-console": 0,
"no-alert": 0,
"no-extend-native": 0,
"react/prop-types": 0,
"jsx-a11y/anchor-is-valid": 0,
"no-script-url": 0,
"import/prefer-default-export": 0,
"space-before-function-paren": 0,
"react/no-array-index-key": 0
}
}