Skip to content

Commit 8305959

Browse files
committed
feat: ignore .idea folder - file templates are being inspected as ts files
1 parent 66bcf8c commit 8305959

File tree

6 files changed

+1265
-1262
lines changed

6 files changed

+1265
-1262
lines changed

.yarn/releases/yarn.js

+630-630
Large diffs are not rendered by default.

code/code-lint-worker/src/linter.worker.content.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

code/code-lint/src/linter.patterns.ts

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const ignore = [
2020
'**/templates/*.yaml',
2121
'**/types/**',
2222
'.terraform',
23+
'.idea'
2324
]
2425

2526
const patterns: string[] = ['./**/*.{js,jsx,ts,tsx}']
@@ -32,6 +33,7 @@ const ignorePatterns: string[] = [
3233
'!**/.yarn/**',
3334
'!./.yarn/**',
3435
'!**/gen/**',
36+
'!**/.idea/**'
3537
]
3638

3739
const createPatterns = (cwd: string): string[] => [

code/code-typescript-worker/src/typescript.worker.content.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/typescript/src/config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,6 @@ export const tsConfig = {
4545
'src/**/*.stories.ts',
4646
'**/*/dist/**/*.d.ts',
4747
'integration/**/*.test.ts',
48+
'.idea'
4849
],
4950
}

yarn/cli/bundles/yarn.js

+630-630
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)