Skip to content

Commit

Permalink
minor lint and prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hellno committed Aug 21, 2024
1 parent f6d267d commit 30ecd59
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"react/prop-types": "off"
"react/prop-types": "off",
"@next/next/no-img-element": "off"
},
"settings": {
"react": {
Expand Down
4 changes: 3 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.next
.github
.yarn
node_modules
node_modules
src-tauri
public
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"serve": "serve -s build",
"lint": "next lint",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src",
"format": "prettier --write .",
"format": "prettier --log-level warn --write .",
"test": "jest",
"prepare": "husky"
},
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@
"@react-aria/interactions" "^3.21.3"
"@tanstack/react-virtual" "^3.8.1"

"@heroicons/react@^2.0.18":
"@heroicons/react@^2.1.5":
version "2.1.5"
resolved "https://registry.yarnpkg.com/@heroicons/react/-/react-2.1.5.tgz#1e13f34976cc542deae92353c01c8b3d7942e9ba"
integrity sha512-FuzFN+BsHa+7OxbvAERtgBTNeZpUjgM/MIizfVkSCL2/edriN0Hx/DWRCR//aPYwO5QX/YlgLGXk+E3PcfZwjA==
Expand Down

0 comments on commit 30ecd59

Please sign in to comment.