Skip to content

Commit e9a29c6

Browse files
committed
add prettier, remove typescript workflow
1 parent 09ea588 commit e9a29c6

File tree

5 files changed

+4661
-4615
lines changed

5 files changed

+4661
-4615
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,4 @@ jobs:
4848
# Check Prettier on codebase #
4949
################################
5050
- name: Run Prettier
51-
run: npx prettier --check .
52-
################################
53-
# Check for TypeScript errors #
54-
################################
55-
- name: Run TypeScript compiler (tsc)
56-
run: npx tsc --noEmit
51+
run: npx prettier --check .

.prettierignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.github/
2+
.vscode/
3+
README.md
4+
package-lock.json
5+
.eslintrc.js
6+
.next/
7+
.prettierrc.js
8+
next-env.d.ts
9+
next.config.js
10+
package.json
11+
tsconfig.json
12+
docs/.vuepress/.cache
13+
docs/.vuepress/.temp
14+
docs/.vuepress/dist

.prettierrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const blueprintPrettier = require('@calblueprint/prettier-config');
2+
3+
module.exports = {
4+
...blueprintPrettier,
5+
};

0 commit comments

Comments
 (0)