lossless-cut/.eslintrc

18 wiersze
328 B
Plaintext
Czysty Zwykły widok Historia

2016-10-30 10:57:12 +00:00
{
"extends": "airbnb",
2018-09-30 20:08:36 +00:00
"parser": "babel-eslint",
2016-10-30 10:57:12 +00:00
"env": {
"node": true,
"browser": true,
},
"rules": {
2018-09-30 20:08:36 +00:00
"no-console": 0,
"react/destructuring-assignment": 0,
2019-01-27 23:21:53 +00:00
"react/forbid-prop-types": [1, { "forbid": ["any"] }],
2019-01-28 17:09:54 +00:00
"jsx-a11y/click-events-have-key-events": 0,
2016-10-30 10:57:12 +00:00
},
"plugins": [
"react"
]
}