cuz
Version:
Front-end modular development kit.
27 lines (26 loc) • 645 B
Plain Text
{
"extends": "eslint-config-airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true,
},
"rules": {
"no-redeclare": 0, //暂时屏蔽该规则, 因为这会导致一个 bug: https://github.com/babel/babel-eslint/pull/209
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"react/jsx-quotes": 0,
"jsx-quotes": 2,
"comma-dangle": 0,
"indent": [2, 2, {"SwitchCase": 1}],
"no-console": 0,
"no-alert": 0,
"id-length": [2, {"min": 2, "max": 50, "properties": "never", "exceptions": ["$"]}]
},
"plugins": [
"react"
],
"globals": {
}
}