jitsi-meet/react/.eslintrc.js
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

29 lines
812 B
JavaScript

module.exports = {
extends: [
'../.eslintrc.js',
'@jitsi/eslint-config/jsdoc',
'@jitsi/eslint-config/react',
'.eslintrc-react-native.js'
],
overrides: [
{
files: [ '*.ts', '*.tsx' ],
extends: [ '@jitsi/eslint-config/typescript' ],
parserOptions: {
project: [ './tsconfig.web.json', './tsconfig.native.json' ]
},
rules: {
// TODO: Remove these and fix the warnings
'@typescript-eslint/no-unsafe-function-type': 0,
'@typescript-eslint/no-wrapper-object-types': 0,
'@typescript-eslint/no-require-imports': 0
}
}
],
settings: {
react: {
'version': 'detect'
}
}
};