Skip to content

Commit

Permalink
Replace tslint with eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ltm committed Mar 31, 2021
1 parent bc99b8f commit cab0296
Show file tree
Hide file tree
Showing 4 changed files with 2,482 additions and 454 deletions.
22 changes: 22 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "off",
"no-prototype-builtins": "off",
"no-useless-escape": "off",
"prefer-spread": "off"
}
}
Loading

0 comments on commit cab0296

Please sign in to comment.