Skip to content

Commit f4e354c

Browse files
authored
fix: eslint and nx ignored paths (#2652)
## 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 -->
2 parents 44b23fe + 50c085c commit f4e354c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.nxignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
**/src/package.json
2+
**/*.ejs
3+
**/*.template
24
packages/@*/*/{builders,schematics}/**/templates/**/*.ts
35
packages/@*/*/{builders,schematics}/**/mocks/**/*.ts
46
packages/@*/*/build/**

eslint.shared.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,13 @@ export default [
2121
ignores: [
2222
'.cache/**/*',
2323
'.yarn/**/*',
24-
'**/dist*/',
24+
'**/dist/',
25+
'**/dist-*/',
2526
'**/test/',
2627
'**/tmp/',
2728
'**/templates/',
29+
'**/*.ejs',
30+
'**/*.template',
2831
'**/.attachments/',
2932
'**/generated-doc/',
3033
'**/packaged-action/',

0 commit comments

Comments
 (0)