Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanPiercey committed Jan 5, 2024
1 parent 1c9d740 commit c596261
Show file tree
Hide file tree
Showing 30 changed files with 5,569 additions and 10,364 deletions.
5 changes: 5 additions & 0 deletions .changeset/plenty-donkeys-cry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"htmljs-parser": patch
---

Upgrade dependencies and configs
32 changes: 30 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
{
"$schema": "https://json.schemastore.org/eslintrc.json",
"root": true,
"extends": ["eslint:recommended", "prettier"],
"extends": ["eslint:recommended", "plugin:import/recommended", "prettier"],
"parserOptions": {
"sourceType": "module",
"impliedStrict": true
},
"settings": {
"import/resolver": {
"typescript": true
}
},
"env": {
"node": true,
"mocha": true,
"es2020": true
"es2024": true
},
"rules": {
"import/order": [
"error",
{
"groups": [
["builtin"],
["external"],
"internal",
"parent",
"sibling",
"index"
],
"alphabetize": {
"order": "asc",
"orderImportKind": "asc",
"caseInsensitive": true
}
}
]
},
"overrides": [
{
Expand All @@ -17,6 +43,8 @@
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier"
],
"rules": {
Expand Down
Loading

0 comments on commit c596261

Please sign in to comment.