Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove ignoreExports from no-unused-modules
Workaround for #248. This needs to be defined in the local configuration for each repo until In the local .eslintrc.js: rules: { 'import/no-unused-modules': [ 'error', { unusedExports: true, missingExports: true, ignoreExports: [ // add your paths and files to ignore here ], }, ], },
- Loading branch information