Skip to content

Commit

Permalink
Initial release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zakyyudha committed May 26, 2024
0 parents commit c1ecd01
Show file tree
Hide file tree
Showing 8 changed files with 6,156 additions and 0 deletions.
584 changes: 584 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Node.js
node_modules/

# TypeScript
dist/
*.js
*.js.map
*.d.ts

# Editor-specific files
.vscode/
.idea/

# Build files
build/

# OS-specific files
.DS_Store
Thumbs.db
15 changes: 15 additions & 0 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = [
{
...require('eslint-config-love'),
rules: {
...require('eslint-config-love').rules,
'@typescript-eslint/strict-boolean-expressions': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/member-delimiter-style': 1,
'@typescript-eslint/semi': 1
},
files: [
'src/**/*.ts',
],
}
];
Loading

0 comments on commit c1ecd01

Please sign in to comment.