Skip to content

Commit 5e78ced

Browse files
committed
chore: commits go brrr
1 parent 006c224 commit 5e78ced

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: yarn masterfile
2424

2525
- name: Lint
26-
run: yarn eslint
26+
run: yarn lint
2727

2828
- name: Prettier
2929
run: yarn prettier

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
run: yarn --prefer-offline
2323
env:
2424
HUSKY: 0
25+
- name: Lint app
26+
run: yarn lint
2527
- name: Build app
2628
run: yarn build
2729
- name: Release

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ server/src/models/queries/*
8686
# Cache
8787
server/.cache/*
8888
!/server/.cache/.gitkeep
89+
.eslintcache
8990

9091
# Misc
9192
ts-check.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"lint-staged": {
4949
"*.{js,jsx,ts,tsx}": [
50-
"eslint \"**/*.{js,jsx}\" --fix"
50+
"eslint --cache --fix"
5151
],
5252
"**/*": [
5353
"prettier --write --ignore-unknown"

0 commit comments

Comments
 (0)