Skip to content

Commit

Permalink
Structure & bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
kubedo8 committed Jan 24, 2021
1 parent 1a55bf3 commit 9bff624
Show file tree
Hide file tree
Showing 81 changed files with 2,969 additions and 767 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
"eslint:recommended"
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: [
'@typescript-eslint',
],
rules: {
"quotes": "off",
"no-unused-vars": "off",
"no-undef": "off",
"no-useless-escape": "off",
"no-case-declarations": "off"
},
};
Loading

0 comments on commit 9bff624

Please sign in to comment.