Skip to content

Commit

Permalink
feat: add event loop functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
vault-developer committed Aug 27, 2024
1 parent 197dff3 commit e6ab338
Show file tree
Hide file tree
Showing 77 changed files with 3,756 additions and 13,728 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# editorconfig.org

root = true

[*]
indent_style = tab
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
18 changes: 0 additions & 18 deletions .eslintrc.cjs

This file was deleted.

8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@ dist-ssr
*.njsproj
*.sln
*.sw?

.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged --allow-empty
8 changes: 8 additions & 0 deletions .lintstagedrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default {
'*.{js,jsx,ts,tsx}': [
'yarn prettier --write',
'yarn eslint --fix',
() => 'yarn typecheck',
],
'*.{json,css,scss,md}': ['yarn prettier --write', 'yarn eslint --fix'],
};
11,006 changes: 0 additions & 11,006 deletions .pnp.cjs

This file was deleted.

Loading

0 comments on commit e6ab338

Please sign in to comment.