lossless-cut/.eslintrc

34 wiersze
828 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",
2020-02-14 04:06:15 +00:00
"plugins": [
"react",
"react-hooks"
],
2016-10-30 10:57:12 +00:00
"env": {
"node": true,
2020-02-14 04:06:15 +00:00
"browser": true
2016-10-30 10:57:12 +00:00
},
"rules": {
"max-len": 0,
2020-02-14 04:06:15 +00:00
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true,
"optionalDependencies": false
}],
2020-02-14 04:06:15 +00:00
"react/jsx-fragments": 0,
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,
"jsx-a11y/interactive-supports-focus": 0,
2020-02-11 15:55:43 +00:00
"react/jsx-one-expression-per-line": 0,
2020-02-14 04:06:15 +00:00
"object-curly-newline": 0,
"arrow-parens": 0,
"jsx-a11y/control-has-associated-label": 0,
"react/prop-types": 0
2020-02-14 04:06:15 +00:00
}
2016-10-30 10:57:12 +00:00
}