Skip to content

Commit 560b23e

Browse files
authored
feat: 🎸 add folders and routers structures (#6)
* feat: 🎸 add types folder * feat: 🎸 add components folder * feat: 🎸 add services folder * feat: 🎸 add hooks folder * feat: 🎸 add pages folder * fix: 🐛 replace kanbanize to trello * feat: 🎸 add helpers folder * feat: 🎸 add templates folder * feat: 🎸 add assets folder * refactor: 💡 change helpers to utils * chore: 🤖 add new eslint validations * feat: 🎸 change pages to screens * refactor: 💡 change testing-library base library * refactor: 💡 add react testing library * feat: 🎸 Router structure - Layout Templates - Styled Components * feat: 🎸 add typescript eslits libraries * feat: 🎸 move npm test to pre-push
1 parent 4abc0ba commit 560b23e

File tree

25 files changed

+2353
-370
lines changed

25 files changed

+2353
-370
lines changed

.eslintrc.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
{
22
"extends": [
33
"next/core-web-vitals",
4-
"plugin:react-hooks/recommended",
5-
"plugin:sonarjs/recommended"
6-
]
4+
"plugin:react-hooks/recommended"
5+
],
6+
"parser": "@typescript-eslint/parser",
7+
"parserOptions": { "project": ["./tsconfig.json"] },
8+
"plugins": [
9+
"@typescript-eslint"
10+
],
11+
"rules": {
12+
"@typescript-eslint/strict-boolean-expressions": [
13+
2,
14+
{
15+
"allowString" : false,
16+
"allowNumber" : false
17+
}
18+
]
19+
},
20+
"ignorePatterns": ["src/**/*.test.ts", "src/frontend/generated/*"]
721
}

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ Briefly describe the changes.
1212
Before and after
1313

1414
## Requirements :pencil2:
15-
Kanbanize link
15+
Trello link

.husky/pre-commit

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
#!/usr/bin/env sh
22
. "$(dirname -- "$0")/_/husky.sh"
3-
4-
npm test

.husky/pre-push

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npm test

0 commit comments

Comments
 (0)