Skip to content

Commit

Permalink
🛠️ [Eslint] Switch to eslint-config-love (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
beefchimi authored Apr 26, 2024
1 parent 386c7dc commit 61b4782
Show file tree
Hide file tree
Showing 5 changed files with 403 additions and 373 deletions.
5 changes: 5 additions & 0 deletions .changeset/small-spies-look.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"emitten": patch
---

Switch to renamed eslint-config-love package.
12 changes: 6 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"env": {
"browser": true,
"es2022": true
"es2022": true,
},
"extends": ["standard-with-typescript", "plugin:prettier/recommended"],
"extends": ["love", "plugin:prettier/recommended"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
"project": "./tsconfig.json",
},
"rules": {
"no-console": "warn",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/consistent-indexed-object-style": [
"error",
"index-signature"
]
}
"index-signature",
],
},
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.11
20.12
Loading

0 comments on commit 61b4782

Please sign in to comment.