Skip to content

Commit 4d587dc

Browse files
style: add newline to end of config files
1 parent d013554 commit 4d587dc

8 files changed

+8
-8
lines changed

.github/workflows/continuous-deployment-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
- run: cp package.json build/package.json
2222
- run: npm publish ./build
2323
env:
24-
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
24+
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

.github/workflows/continuous-integration-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
- uses: actions/checkout@v1
3333
- uses: actions/setup-node@v1
3434
- run: npm ci --ignore-scripts
35-
- run: npm run build
35+
- run: npm run build

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ temp
4949

5050
# Files for playing around locally
5151
playground.ts
52-
playground.js
52+
playground.js

.prettierrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ semi: true
55
singleQuote: true
66
trailingComma: es5
77
bracketSpacing: true
8-
arrowParens: avoid
8+
arrowParens: avoid

codecov.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ coverage:
99
comment: off
1010
ignore:
1111
- testing/**/*.ts
12-
- src/**/*.interface.ts
12+
- src/**/*.interface.ts

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
"forceConsistentCasingInFileNames": true
1414
},
1515
"exclude": ["node_modules", "sample", "**/*.spec.ts", "testing/**"]
16-
}
16+
}

tsconfig.prod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"removeComments": false,
77
"declaration": true,
88
},
9-
}
9+
}

tsconfig.spec.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"noImplicitAny": false,
99
},
1010
"exclude": ["node_modules"]
11-
}
11+
}

0 commit comments

Comments
 (0)