parent
6c50aa14ad
commit
9bb1f99bd9
9 changed files with 634 additions and 112 deletions
@ -1,3 +1,23 @@ |
||||
module.exports = { |
||||
extends: ["./node_modules/matrix-react-sdk/.eslintrc.js"], |
||||
"extends": ["matrix-org", "matrix-org/react"], |
||||
"env": { |
||||
"browser": true, |
||||
"node": true, |
||||
}, |
||||
"rules": { |
||||
"quotes": "off", |
||||
}, |
||||
"overrides": [{ |
||||
"files": ["src/**/*.{ts, tsx}"], |
||||
"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", |
||||
}, |
||||
}], |
||||
} |
||||
|
Loading…
Reference in new issue