Skip to content

Commit

Permalink
Add typescript linter
Browse files Browse the repository at this point in the history
  • Loading branch information
kdevcse committed Apr 18, 2023
1 parent 3a1bfc6 commit 2aaf997
Show file tree
Hide file tree
Showing 7 changed files with 927 additions and 11 deletions.
13 changes: 13 additions & 0 deletions .eslintrc.cjs
@@ -0,0 +1,13 @@
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
root: true,
env: {
"browser": true,
"node": true
},
rules: {
"@typescript-eslint/ban-ts-comment": "off"
}
};

0 comments on commit 2aaf997

Please sign in to comment.