Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
use eslint on this repo (#318)
Browse files Browse the repository at this point in the history
Co-authored-by: Nathan Shively-Sanders <[email protected]>
  • Loading branch information
43081j and sandersn authored Mar 25, 2021
1 parent eac111c commit 8ec7ef4
Show file tree
Hide file tree
Showing 12 changed files with 2,605 additions and 43 deletions.
16 changes: 16 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}
Loading

0 comments on commit 8ec7ef4

Please sign in to comment.