Skip to content

Commit

Permalink
Merge pull request #39 from emnnipal/develop
Browse files Browse the repository at this point in the history
chore: create release
  • Loading branch information
emnnipal authored Mar 3, 2023
2 parents 358cc0c + 9c384ee commit 0f850c7
Show file tree
Hide file tree
Showing 7 changed files with 1,795 additions and 3,478 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
pnpm concurrently -g \
"pnpm lint" \
"pnpm check:types" \
"pnpm test"
"pnpm test" \
"pnpm prettier --check --ignore-unknown ./" \
"npx cspell ./ --no-progress --no-must-find-files"
pr-deploy-preview:
if: github.event.pull_request.base.ref == 'develop'
Expand Down
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@

npx concurrently -g \
"npx lint-staged --concurrent false" \
"npm run check:types"
"npm run check:types" \
"git diff --cached --name-only | npx cspell --no-summary --no-progress --no-must-find-files --file-list stdin"
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ logs/

# misc
.eslintcache
pnpm-lock.yaml
2 changes: 0 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"mikestead.dotenv",
"bradlc.vscode-tailwindcss",
"ecmel.vscode-html-css"
// "styled-components.vscode-styled-components"
]
}
14 changes: 14 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "0.2",
"language": "en",
"words": ["pnpm", "commitlint", "tailwindcss", "svgr", "zustand", "Avenir"],
"flagWords": [],
"ignorePaths": [
"node_modules/",
"build/",
"coverage/",
".husky",
"pnpm-lock.yaml",
"package.json"
]
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"cspell": "^6.27.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
Expand Down Expand Up @@ -99,4 +100,4 @@
"last 1 safari version"
]
}
}
}
Loading

0 comments on commit 0f850c7

Please sign in to comment.