Skip to content

Commit

Permalink
- switching from tslint (deprecated) to eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Sep 26, 2023
1 parent fc85376 commit 9eb7753
Show file tree
Hide file tree
Showing 10 changed files with 2,304 additions and 277 deletions.
8 changes: 8 additions & 0 deletions .eslintrc.cjs
@@ -0,0 +1,8 @@
/* eslint-env node */
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
root: true,
ignorePatterns: ['__tests__/**', 'dist/**', 'node_modules/**', 'build-self/**', '*.js'],
};

0 comments on commit 9eb7753

Please sign in to comment.