element-call-Github/.eslintrc.js
2022-05-03 15:32:16 +01:00

36 lines
742 B
JavaScript

module.exports = {
plugins: [
"matrix-org",
],
extends: [
"plugin:matrix-org/react",
"plugin:matrix-org/a11y",
"prettier",
],
env: {
browser: true,
node: true,
},
parserOptions: {
"ecmaVersion": "latest",
"sourceType": "module",
},
rules: {
// We break this rule in a few places: dial it back to a warning
// (and run with max warnings) to tolerate the existing code
"react-hooks/exhaustive-deps": ["warn"],
},
overrides: [
{
files: [
"src/**/*.{ts,tsx}",
],
},
],
settings: {
react: {
version: "detect",
},
},
};