Skip to content

Commit

Permalink
Started reorganizing code into modules.
Browse files Browse the repository at this point in the history
Added eslint, fixed some errors & warnings.
  • Loading branch information
jasoncoon committed Feb 12, 2022
1 parent 0a71f04 commit 921b855
Show file tree
Hide file tree
Showing 12 changed files with 1,204 additions and 439 deletions.
12 changes: 12 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.DS_Store
.vscode
.vscode
node_modules
2 changes: 1 addition & 1 deletion index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,6 @@ <h2 class="accordion-header" id="headingStats">
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<script src="index.js"></script>
<script src="index.js" type="module"></script>
</body>
</html>
Loading

0 comments on commit 921b855

Please sign in to comment.