lossless-cut/.eslintrc

17 wiersze
280 B
Plaintext

{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"node": true,
"browser": true,
},
"rules": {
"no-console": 0,
"react/destructuring-assignment": 0,
"react/forbid-prop-types": [1, { "forbid": ["any"] }],
},
"plugins": [
"react"
]
}