Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Miquel Martín committed Oct 29, 2023
1 parent d93cfcd commit 74704fb
Show file tree
Hide file tree
Showing 17 changed files with 2,366 additions and 857 deletions.
25 changes: 24 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
{
"extends": ["airbnb-base", "plugin:prettier/recommended"],
"extends": [
"airbnb-base",
"airbnb-typescript/base",
// "prettier",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"import",
"@typescript-eslint"
// "prettier"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6,
"project": "./tsconfig.json"
},
"env": {
"node": true
},
"rules": {
"@typescript-eslint/no-explicit-any": [0]
}
}
Loading

0 comments on commit 74704fb

Please sign in to comment.