Skip to content

Commit

Permalink
fix: Fixed linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel-merlin committed Feb 6, 2024
1 parent e8be832 commit e19e52a
Show file tree
Hide file tree
Showing 9 changed files with 353 additions and 541 deletions.
21 changes: 11 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"standard-with-typescript",
"plugin:react/recommended"
"standard-with-typescript",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
"project": "./tsconfig.json",
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react"
"@typescript-eslint"
],
"rules": {
"import/extensions": 1,
"import/no-named-as-default": 0,
"@typescript-eslint/strict-boolean-expressions": 0,
"@typescript-eslint/explicit-module-boundary-types": 0
}
}
}
Loading

0 comments on commit e19e52a

Please sign in to comment.