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