Co-authored-by: mashal-m <mashal.malik@arbisoft.com> Co-authored-by: Bilal Qamar <59555732+BilalQamar95@users.noreply.github.com>
18 lines
590 B
JavaScript
18 lines
590 B
JavaScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
const { createConfig } = require('@openedx/frontend-build');
|
|
|
|
const config = createConfig('eslint', {
|
|
rules: {
|
|
// TODO: all these rules should be renabled/addressed. temporarily turned off to unblock a release.
|
|
'react-hooks/rules-of-hooks': 'off',
|
|
'react-hooks/exhaustive-deps': 'off',
|
|
'import/no-extraneous-dependencies': 'off',
|
|
'no-restricted-exports': 'off',
|
|
'react/jsx-no-useless-fragment': 'off',
|
|
'react/no-unknown-property': 'off',
|
|
'func-names': 'off',
|
|
},
|
|
});
|
|
|
|
module.exports = config;
|