mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 15:34:59 +01:00
c4e697edd7
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
23 lines
685 B
JavaScript
23 lines
685 B
JavaScript
module.exports = {
|
|
plugins: ["matrix-org"],
|
|
extends: [".eslintrc.js"],
|
|
parserOptions: {
|
|
project: ["playwright/tsconfig.json"],
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ["playwright/**/*.ts"],
|
|
extends: ["plugin:matrix-org/typescript"],
|
|
rules: {
|
|
// Things we do that break the ideal style
|
|
"prefer-promise-reject-errors": "off",
|
|
"quotes": "off",
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
// We're okay with assertion errors when we ask for them
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
},
|
|
},
|
|
],
|
|
};
|