37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
const { createConfig } = require('@openedx/frontend-build');
|
|
|
|
const config = createConfig('eslint', {
|
|
rules: {
|
|
'import/no-named-as-default': 'off',
|
|
'import/no-named-as-default-member': 'off',
|
|
'import/no-import-module-exports': 'off',
|
|
'import/no-self-import': 'off',
|
|
'spaced-comment': ['error', 'always', { block: { exceptions: ['*'] } }],
|
|
'react-hooks/rules-of-hooks': 'off',
|
|
'react/forbid-prop-types': ['error', { forbid: ['any', 'array'] }], // arguable object proptype is use when I do not care about the shape of the object
|
|
'no-import-assign': 'off',
|
|
'no-promise-executor-return': 'off',
|
|
'import/no-cycle': 'off',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/*.test.{js,jsx,ts,tsx}'],
|
|
rules: {
|
|
'react/prop-types': 'off',
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
config.settings = {
|
|
'import/resolver': {
|
|
node: {
|
|
paths: ['src', 'node_modules'],
|
|
extensions: ['.js', '.jsx'],
|
|
},
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|