analytics/assets/.eslintrc.json

23 lines
742 B
JSON
Raw Normal View History

{
"env": {
"browser": true
},
"extends": ["airbnb", "prettier"],
"plugins": ["prettier"],
"rules": {
"max-len": [0, {"code": 120}],
"prettier/prettier": [2],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/destructuring-assignment": [0],
"react/prop-types": [0],
"max-classes-per-file": [0],
"react/jsx-one-expression-per-line": [0],
"react/self-closing-comp": [0],
"no-unused-expressions": [1, { "allowShortCircuit": true }],
"no-unused-vars": [2, { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }],
"jsx-a11y/click-events-have-key-events": [0],
2021-09-27 17:16:25 +03:00
"jsx-a11y/no-static-element-interactions": [0],
"react/no-did-update-set-state": [0]
}
}