2017-01-20 15:08:14 +01:00
|
|
|
module.exports = {
|
2021-04-01 14:17:09 +02:00
|
|
|
plugins: ["matrix-org"],
|
|
|
|
extends: [
|
2021-06-29 14:18:58 +02:00
|
|
|
"plugin:matrix-org/babel",
|
2021-04-01 14:17:09 +02:00
|
|
|
"plugin:matrix-org/react",
|
|
|
|
],
|
2017-01-20 15:08:14 +01:00
|
|
|
env: {
|
2020-06-23 17:41:36 +02:00
|
|
|
browser: true,
|
|
|
|
node: true,
|
2017-01-20 15:08:14 +01:00
|
|
|
},
|
2020-06-23 17:41:36 +02:00
|
|
|
globals: {
|
|
|
|
LANGUAGES_FILE: "readonly",
|
2017-01-20 15:08:14 +01:00
|
|
|
},
|
|
|
|
rules: {
|
2020-06-23 17:41:36 +02:00
|
|
|
// Things we do that break the ideal style
|
|
|
|
"no-constant-condition": "off",
|
|
|
|
"prefer-promise-reject-errors": "off",
|
|
|
|
"no-async-promise-executor": "off",
|
|
|
|
"quotes": "off",
|
2021-04-01 14:17:09 +02:00
|
|
|
"no-extra-boolean-cast": "off",
|
2017-01-20 15:08:14 +01:00
|
|
|
|
2021-04-01 14:17:09 +02:00
|
|
|
// 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"],
|
2021-06-30 15:27:03 +02:00
|
|
|
|
|
|
|
"no-restricted-properties": [
|
|
|
|
"error",
|
|
|
|
...buildRestrictedPropertiesOptions(
|
|
|
|
["window.innerHeight", "window.innerWidth", "window.visualViewport"],
|
|
|
|
"Use UIStore to access window dimensions instead.",
|
|
|
|
),
|
|
|
|
...buildRestrictedPropertiesOptions(
|
|
|
|
["*.mxcUrlToHttp", "*.getHttpUriForMxc"],
|
|
|
|
"Use Media helper instead to centralise access for customisation.",
|
|
|
|
),
|
|
|
|
],
|
2021-04-01 14:17:09 +02:00
|
|
|
},
|
2020-06-23 17:41:36 +02:00
|
|
|
overrides: [{
|
2021-06-29 14:19:42 +02:00
|
|
|
files: [
|
2021-04-01 14:17:09 +02:00
|
|
|
"src/**/*.{ts,tsx}",
|
|
|
|
"test/**/*.{ts,tsx}",
|
|
|
|
],
|
2021-06-29 14:19:42 +02:00
|
|
|
extends: [
|
2021-04-01 14:17:09 +02:00
|
|
|
"plugin:matrix-org/typescript",
|
|
|
|
"plugin:matrix-org/react",
|
|
|
|
],
|
2021-06-29 14:19:42 +02:00
|
|
|
rules: {
|
2021-04-01 14:17:09 +02:00
|
|
|
// Things we do that break the ideal style
|
|
|
|
"prefer-promise-reject-errors": "off",
|
|
|
|
"quotes": "off",
|
|
|
|
"no-extra-boolean-cast": "off",
|
|
|
|
|
2021-06-29 14:35:43 +02:00
|
|
|
// Remove Babel things manually due to override limitations
|
|
|
|
"@babel/no-invalid-this": ["off"],
|
|
|
|
|
2021-01-20 14:49:15 +01:00
|
|
|
// We're okay being explicit at the moment
|
|
|
|
"@typescript-eslint/no-empty-interface": "off",
|
2020-06-23 17:41:36 +02:00
|
|
|
// 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",
|
2020-07-29 13:00:42 +02:00
|
|
|
},
|
2020-06-23 17:41:36 +02:00
|
|
|
}],
|
2017-01-20 15:08:14 +01:00
|
|
|
};
|
2021-05-25 11:25:36 +02:00
|
|
|
|
|
|
|
function buildRestrictedPropertiesOptions(properties, message) {
|
|
|
|
return properties.map(prop => {
|
2021-06-30 15:19:39 +02:00
|
|
|
let [object, property] = prop.split(".");
|
|
|
|
if (object === "*") {
|
|
|
|
object = undefined;
|
|
|
|
}
|
2021-05-25 11:25:36 +02:00
|
|
|
return {
|
|
|
|
object,
|
|
|
|
property,
|
|
|
|
message,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|