Skip to content

Commit 3184f78

Browse files
committed
Configure Prettier and ESLint to ignore github workflows and build output
1 parent 82d2301 commit 3184f78

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.prettierignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Build outputs
2+
out/
3+
lsp-proxy/out/
4+
node_modules/
5+
6+
# GitHub Actions workflows
7+
.github/

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import tseslint from 'typescript-eslint';
55

66
export default tseslint.config(
77
{
8-
ignores: ['out/**', 'lsp-proxy/out/**'],
8+
ignores: ['out/**', 'lsp-proxy/out/**', '.github/**'],
99
},
1010
eslint.configs.recommended,
1111
tseslint.configs.recommended,

0 commit comments

Comments
 (0)