Skip to content

Commit

Permalink
Merge branch 'next' of github:HolodexNet/Holodex into next
Browse files Browse the repository at this point in the history
  • Loading branch information
P-man2976 committed Oct 23, 2023
2 parents 6590797 + 4f11956 commit 386db7b
Show file tree
Hide file tree
Showing 44 changed files with 947 additions and 5,886 deletions.
1 change: 1 addition & 0 deletions packages/react/.husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions packages/react/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
23 changes: 23 additions & 0 deletions packages/react/.lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"*.ts": [
"prettier --write",
"eslint"
],
"*.tsx": [
"prettier --write",
"eslint"
],
"*.js": [
"prettier --write",
"eslint"
],
"*.jsx": [
"prettier --write",
"eslint"
],
"*.html": [
"eslint",
"prettier --write"
],
"*.scss": "prettier --write"
}
5 changes: 4 additions & 1 deletion packages/react/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"$schema": "http://json.schemastore.org/prettierrc",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"trailingComma": "all",
"printWidth": 80,
"useTabs": false,
"endOfLine": "auto"
"endOfLine": "auto",
"curly": true,
"arrowParens": "always"
}
Loading

0 comments on commit 386db7b

Please sign in to comment.