Skip to content

Commit 01a48d3

Browse files
renovate[bot]xoxys
andauthored
fix(deps): update dependency flexsearch to v0.8.212 (thegeeklab#1071)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
1 parent e93b092 commit 01a48d3

File tree

6 files changed

+67
-59
lines changed

6 files changed

+67
-59
lines changed

.lighthouserc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ ci:
2727
"max-potential-fid",
2828
"interactive",
2929
"dom-size",
30-
"forced-reflow-insight"
30+
"forced-reflow-insight",
31+
"unused-javascript"
3132
]
3233
assert:
3334
preset: "lighthouse:no-pwa"
@@ -49,6 +50,7 @@ ci:
4950
interactive: off
5051
dom-size: off
5152
forced-reflow-insight: off
53+
unused-javascript: off
5254
total-byte-weight: warn
5355
identical-links-same-purpose: warn
5456
tap-targets: warn

.tarignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
.envrc
2+
.nvmrc
23
.npmrc
34
.tarignore
4-
.dictionary*
55
.git*
66
.woodpecker*
77
.lighthouse*
88
.markdownlint*
99
.jsbeautify*
1010
.prettier*
11-
.eslintrc*
1211
.htmlvalidate*
1312
.lycheeignore*
13+
.cspell*
14+
eslint*
1415
example*
1516
webpack*
1617
svgsprite*

eslint.config.js

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
import eslint from "@eslint/js";
2-
import globals from "globals";
3-
import babelParser from "@babel/eslint-parser";
4-
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
1+
import eslint from "@eslint/js"
2+
import globals from "globals"
3+
import babelParser from "@babel/eslint-parser"
4+
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"
55

66
export default [
7-
eslint.configs.recommended,
8-
{
9-
languageOptions: {
10-
globals: {
11-
...globals.browser,
12-
},
13-
parser: babelParser,
14-
ecmaVersion: 2022,
15-
sourceType: "module",
16-
parserOptions: {
17-
requireConfigFile: false,
18-
},
19-
},
20-
},
21-
eslintPluginPrettierRecommended,
22-
];
7+
eslint.configs.recommended,
8+
{
9+
languageOptions: {
10+
globals: {
11+
...globals.browser
12+
},
13+
parser: babelParser,
14+
ecmaVersion: 2022,
15+
sourceType: "module",
16+
parserOptions: {
17+
requireConfigFile: false
18+
}
19+
}
20+
},
21+
eslintPluginPrettierRecommended
22+
]

0 commit comments

Comments
 (0)