react-flexbox
Version:
React flexbox implementation
35 lines (34 loc) • 793 B
Plain Text
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"rules": {
"strict": 0,
"no-var": true,
"no-underscore-dangle": false,
"quotes": [2, "single", "avoid-escape"],
"new-cap": [1, {
"capIsNewExceptions": ["Map", "List"]
}],
"react/display-name": 1,
"react/jsx-quotes": 1,
"react/jsx-no-undef": 1,
"react/jsx-sort-props": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-multi-comp": 1,
"react/no-unknown-property": 1,
"react/prop-types": 1,
"react/react-in-jsx-scope": 1,
"react/self-closing-comp": 1,
"react/wrap-multilines": 1
},
"plugins": [
"react"
]
}