Skip to content

Commit

Permalink
improvement: add es-lint to project and update package.json and packa…
Browse files Browse the repository at this point in the history
…ge-lock.json
  • Loading branch information
Robert Mirandola committed Feb 28, 2023
1 parent 1bcebe2 commit 330392d
Show file tree
Hide file tree
Showing 3 changed files with 1,839 additions and 5 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"overrides": [
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
}
}
Loading

0 comments on commit 330392d

Please sign in to comment.