2017-01-23 14:22:54 +00:00
|
|
|
module.exports = {
|
2021-06-30 13:19:04 +01:00
|
|
|
extends: ["matrix-org", "matrix-org/react"],
|
|
|
|
env: {
|
|
|
|
browser: true,
|
|
|
|
node: true,
|
2020-07-21 11:30:28 +01:00
|
|
|
},
|
2021-06-30 13:19:04 +01:00
|
|
|
rules: {
|
2020-07-21 11:30:28 +01:00
|
|
|
"quotes": "off",
|
|
|
|
},
|
2021-06-30 13:19:04 +01:00
|
|
|
overrides: [{
|
|
|
|
files: ["src/**/*.{ts,tsx}"],
|
|
|
|
extends: ["matrix-org/ts", "matrix-org/react"],
|
|
|
|
env: {
|
|
|
|
browser: true,
|
2020-07-21 11:30:28 +01:00
|
|
|
},
|
2021-06-30 13:19:04 +01:00
|
|
|
rules: {
|
2020-07-21 11:30:28 +01:00
|
|
|
"quotes": "off",
|
|
|
|
// While converting to ts we allow this
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
"prefer-promise-reject-errors": "off",
|
|
|
|
},
|
|
|
|
}],
|
2020-07-29 12:05:50 +01:00
|
|
|
};
|