1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 02:12:30 +01:00
lossless-cut/.eslintrc

20 lines
402 B
Plaintext
Raw Normal View History

2016-10-30 11:57:12 +01:00
{
"extends": "airbnb",
2018-09-30 22:08:36 +02:00
"parser": "babel-eslint",
2016-10-30 11:57:12 +01:00
"env": {
"node": true,
"browser": true,
},
"rules": {
2018-09-30 22:08:36 +02:00
"no-console": 0,
"react/destructuring-assignment": 0,
2019-01-28 00:21:53 +01:00
"react/forbid-prop-types": [1, { "forbid": ["any"] }],
2019-01-28 18:09:54 +01:00
"jsx-a11y/click-events-have-key-events": 0,
2020-02-11 16:55:43 +01:00
"react/jsx-one-expression-per-line": 0,
"object-curly-newline": 0
2016-10-30 11:57:12 +01:00
},
"plugins": [
"react"
]
}