Skip to content

Commit

Permalink
Ignore .cdk.staging for ESLint and Prettier (#957)
Browse files Browse the repository at this point in the history
This is similar to #940. We were already gitignoring this directory.
  • Loading branch information
72636c committed Aug 30, 2022
1 parent 7895c6b commit 7ccafc9
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/angry-ears-bow.md
@@ -0,0 +1,5 @@
---
'skuba': patch
---

configure, template: Ignore linting on `.cdk.staging` directory
2 changes: 1 addition & 1 deletion .changeset/bright-actors-sneeze.md
Expand Up @@ -2,4 +2,4 @@
'skuba': patch
---

template: Ignore linting on `cdk.out` directory
configure, template: Ignore linting on `cdk.out` directory
1 change: 1 addition & 0 deletions .eslintignore
Expand Up @@ -2,6 +2,7 @@
.idea/*
.vscode/*

.cdk.staging/
.serverless/
cdk.out/
node_modules*/
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Expand Up @@ -2,6 +2,7 @@
.idea/*
.vscode/*

.cdk.staging/
.serverless/
cdk.out/
node_modules*/
Expand Down
2 changes: 2 additions & 0 deletions src/cli/configure/analysis/__snapshots__/project.test.ts.snap
Expand Up @@ -29,6 +29,7 @@ yarn-error.log
.idea/*
.vscode/*
.cdk.staging/
.serverless/
cdk.out/
node_modules*/
Expand Down Expand Up @@ -87,6 +88,7 @@ yarn-error.log
.idea/*
.vscode/*
.cdk.staging/
.serverless/
cdk.out/
node_modules*/
Expand Down
1 change: 1 addition & 0 deletions template/base/_.eslintignore
Expand Up @@ -2,6 +2,7 @@
.idea/*
.vscode/*

.cdk.staging/
.serverless/
cdk.out/
node_modules*/
Expand Down
1 change: 1 addition & 0 deletions template/base/_.prettierignore
Expand Up @@ -2,6 +2,7 @@
.idea/*
.vscode/*

.cdk.staging/
.serverless/
cdk.out/
node_modules*/
Expand Down

0 comments on commit 7ccafc9

Please sign in to comment.