Skip to content

Commit

Permalink
tslint -> eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Sep 8, 2021
1 parent 90262d6 commit 9a31068
Show file tree
Hide file tree
Showing 8 changed files with 1,149 additions and 26 deletions.
22 changes: 22 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//@ts-check

/**@type {import('eslint').Linter.Config} */
// eslint-disable-next-line no-undef
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'semi': [2, "always"],
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-non-null-assertion': 0,
}
};
Loading

0 comments on commit 9a31068

Please sign in to comment.