element-call/.eslintrc.cjs

43 lines
926 B
JavaScript
Raw Normal View History

2022-05-03 14:32:16 +00:00
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: {
"jsx-a11y/media-has-caption": ["off"],
2022-05-03 14:32:16 +00:00
},
overrides: [
{
files: [
"src/**/*.{ts,tsx}",
],
2022-05-06 10:32:09 +00:00
extends: [
"plugin:matrix-org/typescript",
"plugin:matrix-org/react",
"prettier",
],
2022-10-27 13:54:31 +00:00
rules: {
// We're aiming to convert this code to strict mode
"@typescript-eslint/no-non-null-assertion": "off",
},
2022-05-03 14:32:16 +00:00
},
],
settings: {
react: {
version: "detect",
},
},
};