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