Skip to content

Commit

Permalink
major refactoring
Browse files Browse the repository at this point in the history
- created a package.json
- refactor with eslint
- use modules
- moved everything to webpack
  • Loading branch information
dogeystamp committed Jan 31, 2023
1 parent b9a56f3 commit 09199eb
Show file tree
Hide file tree
Showing 16 changed files with 10,296 additions and 139 deletions.
22 changes: 22 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
env:
browser: true
es2021: true
node: true
extends: eslint:recommended
overrides: []
parserOptions:
ecmaVersion: latest
sourceType: module
rules:
indent:
- error
- tab
linebreak-style:
- error
- unix
quotes:
- error
- double
semi:
- error
- always
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tags
node_modules/
dist/
Loading

0 comments on commit 09199eb

Please sign in to comment.