Skip to content

Commit

Permalink
add prettier, remove typescript workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jinkang-0 committed May 17, 2024
1 parent 09ea588 commit e9a29c6
Show file tree
Hide file tree
Showing 5 changed files with 4,661 additions and 4,615 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,4 @@ jobs:
# Check Prettier on codebase #
################################
- name: Run Prettier
run: npx prettier --check .
################################
# Check for TypeScript errors #
################################
- name: Run TypeScript compiler (tsc)
run: npx tsc --noEmit
run: npx prettier --check .
14 changes: 14 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.github/
.vscode/
README.md
package-lock.json
.eslintrc.js
.next/
.prettierrc.js
next-env.d.ts
next.config.js
package.json
tsconfig.json
docs/.vuepress/.cache
docs/.vuepress/.temp
docs/.vuepress/dist
5 changes: 5 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const blueprintPrettier = require('@calblueprint/prettier-config');

module.exports = {
...blueprintPrettier,
};
Loading

0 comments on commit e9a29c6

Please sign in to comment.