Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .vscode/settings.json
Copy link
Collaborator

@IlinJoy IlinJoy Sep 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.vscode/settings looks a little bit like a personal settings, but I’m not sure, I haven’t seen anything like this before.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@IlinJoy, this may be useful, especially if most of the team uses vs code

@Sepulator, I'd also recommend adding:

    "editor.codeActionsOnSave": {
        "source.fixAll": "explicit"
    }

to be able to fix eslint auto-fixable problems when you save a file

Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@
"files.associations": {
"*.css": "tailwindcss"
},
//Fix eslint auto-fixable problems on save a file
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"eslint.useFlatConfig": false,
// Ensure enough terminal history is preserved when running tests.
"terminal.integrated.scrollback": 10000,
"cSpell.words": []
"cSpell.words": ["heroui"]
}
1 change: 0 additions & 1 deletion commitlint.config.js

This file was deleted.

2 changes: 2 additions & 0 deletions hero.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import { heroui } from '@heroui/react';
export default heroui();
Loading