Skip to content

Commit

Permalink
fix: eslint y typescripti trabajando juntos
Browse files Browse the repository at this point in the history
  • Loading branch information
drusco committed Jul 17, 2023
1 parent 2b95326 commit df4e1e7
Show file tree
Hide file tree
Showing 4 changed files with 1,581 additions and 395 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@
"es2021": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"@typescript-eslint/no-unused-vars": "error"
}
Expand Down
Loading

0 comments on commit df4e1e7

Please sign in to comment.