element-web/.eslintrc.js

73 lines
2.2 KiB
JavaScript
Raw Normal View History

module.exports = {
plugins: ["matrix-org"],
extends: [
"plugin:matrix-org/javascript",
"plugin:matrix-org/react",
],
parser: "@babel/eslint-parser",
env: {
browser: true,
node: true,
},
globals: {
LANGUAGES_FILE: "readonly",
},
rules: {
// Things we do that break the ideal style
"no-constant-condition": "off",
"prefer-promise-reject-errors": "off",
"no-async-promise-executor": "off",
"quotes": "off",
"no-extra-boolean-cast": "off",
// Bind or arrow functions in props causes performance issues (but we
// currently use them in some places).
// It's disabled here, but we should using it sparingly.
"react/jsx-no-bind": "off",
"react/jsx-key": ["error"],
},
overrides: [{
"files": [
"src/**/*.{ts,tsx}",
"test/**/*.{ts,tsx}",
],
"extends": [
"plugin:matrix-org/typescript",
"plugin:matrix-org/react",
],
"rules": {
// Things we do that break the ideal style
"prefer-promise-reject-errors": "off",
"quotes": "off",
"indent": "off",
"no-extra-boolean-cast": "off",
2021-01-20 14:49:15 +01:00
// We're okay being explicit at the moment
"@typescript-eslint/no-empty-interface": "off",
// We disable this while we're transitioning
"@typescript-eslint/no-explicit-any": "off",
// We'd rather not do this but we do
"@typescript-eslint/ban-ts-comment": "off",
"no-restricted-properties": [
"error",
...buildRestrictedPropertiesOptions(
["window.innerHeight", "window.innerWidth", "window.visualViewport"],
"Use UIStore to access window dimensions instead",
),
],
},
}],
};
function buildRestrictedPropertiesOptions(properties, message) {
return properties.map(prop => {
const [object, property] = prop.split(".");
return {
object,
property,
message,
};
});
}