Skip to content

Commit

Permalink
improvement project-structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoncalves8080 committed Jul 29, 2024
1 parent 937f372 commit 2aa1de9
Show file tree
Hide file tree
Showing 121 changed files with 4,329 additions and 3,567 deletions.
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.next
next-env.d.ts
node_modules
yarn.lock
package-lock.json
public
14 changes: 13 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,17 @@
"standard",
"plugin:tailwindcss/recommended",
"prettier"
]
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"settings": {
"react": {
"version": "detect"
}
}
}
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

# vscode
.vscode
# IDE settings
/.idea/
/.fleet/
/.vscode/

# env
.env
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.next
next-env.d.ts
node_modules
yarn.lock
package-lock.json
public
8 changes: 8 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"semi": false,
"trailingComma": "es5",
"singleQuote": false,
"tabWidth": 2,
"useTabs": false,
"printWidth": 80
}
Loading

0 comments on commit 2aa1de9

Please sign in to comment.