2017-01-20 15:08:14 +01:00
|
|
|
module.exports = {
|
2020-06-23 17:41:36 +02:00
|
|
|
extends: ["matrix-org", "matrix-org/react-legacy"],
|
2017-01-20 15:08:14 +01:00
|
|
|
parser: "babel-eslint",
|
2020-06-23 17:41:36 +02:00
|
|
|
|
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",
|
|
|
|
"indent": "off",
|
|
|
|
},
|
2017-01-20 15:08:14 +01:00
|
|
|
|
2020-06-23 17:41:36 +02:00
|
|
|
overrides: [{
|
2020-08-29 02:11:08 +02:00
|
|
|
"files": ["src/**/*.{ts,tsx}"],
|
2020-06-23 17:41:36 +02:00
|
|
|
"extends": ["matrix-org/ts"],
|
|
|
|
"rules": {
|
|
|
|
// 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",
|
2019-10-07 17:52:50 +02:00
|
|
|
|
2020-06-23 17:41:36 +02:00
|
|
|
"quotes": "off",
|
2020-07-21 11:29:05 +02:00
|
|
|
"no-extra-boolean-cast": "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
|
|
|
};
|