Skip to content

Commit

Permalink
fix: eslint and nx ignored paths (#2652)
Browse files Browse the repository at this point in the history
## Proposed change

fix: eslint and nx ignored paths

<!--
Please include a summary of the changes and the related issue.
Please also include relevant motivation and context.
-->

## Related issues

<!--
Please make sure to follow the [contribution
guidelines](https://github.com/amadeus-digital/Otter/blob/main/CONTRIBUTING.md)
-->

*- No issue associated -*

<!-- * 🐛 Fix #issue -->
<!-- * 🐛 Fix resolves #issue -->
<!-- * 🚀 Feature #issue -->
<!-- * 🚀 Feature resolves #issue -->
<!-- * :octocat: Pull Request #issue -->
  • Loading branch information
kpanot authored Jan 2, 2025
2 parents 44b23fe + 50c085c commit f4e354c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .nxignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
**/src/package.json
**/*.ejs
**/*.template
packages/@*/*/{builders,schematics}/**/templates/**/*.ts
packages/@*/*/{builders,schematics}/**/mocks/**/*.ts
packages/@*/*/build/**
Expand Down
5 changes: 4 additions & 1 deletion eslint.shared.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ export default [
ignores: [
'.cache/**/*',
'.yarn/**/*',
'**/dist*/',
'**/dist/',
'**/dist-*/',
'**/test/',
'**/tmp/',
'**/templates/',
'**/*.ejs',
'**/*.template',
'**/.attachments/',
'**/generated-doc/',
'**/packaged-action/',
Expand Down

0 comments on commit f4e354c

Please sign in to comment.