Skip to content

Commit

Permalink
Merge pull request #1060 from alfonsomthd/update-no-extraneous-deps
Browse files Browse the repository at this point in the history
Update lint rule: no-extraneous-deps
  • Loading branch information
openshift-ci[bot] authored Oct 6, 2023
2 parents 2718754 + 648f54e commit c0cbf1f
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,27 @@ module.exports = {
'implicit-arrow-linebreak': 'off',
'import/no-extraneous-dependencies': [
'error',
{ packageDir: ['.', './packages/odf', './packages/shared'] },
{
packageDir: [
'.',
'./packages/client',
'./packages/ibm',
'./packages/mco',
'./packages/ocs',
'./packages/odf',
'./packages/odf-plugin-sdk',
'./packages/shared',
],
devDependencies: [
'**/*.spec.ts',
'**/*.spec.tsx',
'./setupJest.ts',
'./cypress/**',
],
optionalDependencies: false,
peerDependencies: false,
bundledDependencies: false,
},
],
'jsx-a11y/anchor-is-valid': 'off',
'jsx-a11y/click-events-have-key-events': 'off',
Expand Down

0 comments on commit c0cbf1f

Please sign in to comment.