Skip to content

Commit 2e90f5e

Browse files
committed
🔧 [chore] Update dependencies in package.json
- ⬆️ Upgrade acorn from ^8.15.0 to ^8.16.0 - ⬆️ Upgrade balanced-match from ^3.0.1 to ^4.0.4 - ⬆️ Upgrade brace-expansion from ^5.0.4 to ^5.0.5 - ⬆️ Upgrade eslint-scope from ^9.1.0 to ^9.1.2 - ⬆️ Upgrade eslint-visitor-keys from ^5.0.0 to ^5.0.1 - ⬆️ Upgrade espree from ^11.1.0 to ^11.2.0 - ⬆️ Upgrade flat-cache from ^6.1.14 to ^6.1.22 - ⬆️ Upgrade flatted from ^3.3.3 to ^3.4.2 - ⬆️ Upgrade generator-code from ^1.11.16 to ^1.11.18 - ⬆️ Upgrade import-fresh from ^3.3.1 to ^4.0.0 - ⬆️ Upgrade isexe from ^3.1.1 to ^4.0.0 - ⬆️ Upgrade jsdom from ^27.4.0 to ^29.0.2 - ⬆️ Upgrade keyv from ^5.5.5 to ^5.6.0 - ⬆️ Upgrade minimatch from ^10.2.4 to ^10.2.5 - ⬆️ Upgrade p-limit from ^7.2.0 to ^7.3.0 - ⬆️ Upgrade p-locate from ^6.0.0 to ^7.0.0 - ⬆️ Upgrade picomatch from ^4.0.3 to ^4.0.4 - ⬆️ Upgrade semver from ^7.7.3 to ^7.7.4 - ⬆️ Upgrade ts-api-utils from ^2.4.0 to ^2.5.0 - ⬆️ Upgrade @actions/artifact from ^6.1.0 to ^6.2.1 - ⬆️ Upgrade @actions/attest from ^2.2.1 to ^3.2.0 - ⬆️ Upgrade @actions/core from ^2.0.1 to ^3.0.0 - ⬆️ Upgrade @actions/http-client from ^3.0.0 to ^4.0.0 - ⬆️ Upgrade @eslint/js from ^9.39.2 to ^10.0.1 - ⬆️ Upgrade @typescript-eslint/eslint-plugin from ^8.54.0 to ^8.58.1 - ⬆️ Upgrade @typescript-eslint/parser from ^8.54.0 to ^8.58.1 - ⬆️ Upgrade canvas from ^3.2.1 to ^3.2.3 - ⬆️ Upgrade eslint from ^9.39.2 to ^10.2.0 - ⬆️ Upgrade globals from ^17.3.0 to ^17.4.0 - ⬆️ Upgrade jest from ^30.2.0 to ^30.3.0 - ⬆️ Upgrade sinon from ^21.0.1 to ^21.0.3 - ⬆️ Upgrade stylelint from ^17.1.0 to ^17.6.0 - ⬆️ Upgrade typescript from ^5.9.3 to ^6.0.2 Signed-off-by: Nick2bad4u <[email protected]>
1 parent 63ec5a2 commit 2e90f5e

7 files changed

Lines changed: 1505 additions & 1968 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -715,3 +715,4 @@ zwiftbikes/
715715
#Ignore vscode AI rules
716716
.github\copilot-instructions.md
717717
package.json
718+
.stylelintcache

.stylelintcache

Lines changed: 0 additions & 1 deletion
This file was deleted.

.stylelintignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,17 @@ build/
99

1010
# Vendor bundles / maps
1111
**/*.map
12+
13+
**/node_modules/**
14+
**/dist/**
15+
**/build/**
16+
**/*.min.js
17+
**/*.min.cjs
18+
**/*.min.mjs
19+
SuperchargedLocalDirectoryWebUI.user.js
20+
codemirror.js
21+
SteamDB-Dark-Mode.user.css
22+
WahooFitnessDarkMode.user.css
23+
codemirror.min.js
24+
ESPN-DarkMode.user.css
25+
Skial-CustomTheme.user.css

.stylelintrc.json

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
2-
"extends": [
3-
"stylelint-config-standard"
4-
],
5-
"plugins": [
6-
"stylelint-stylus"
7-
],
2+
"extends": ["stylelint-config-standard"],
3+
"plugins": ["stylelint-stylus"],
84
"reportDescriptionlessDisables": true,
95
"reportInvalidScopeDisables": true,
106
"reportNeedlessDisables": true,
@@ -17,13 +13,9 @@
1713
],
1814
"overrides": [
1915
{
20-
"files": [
21-
"**/*.{styl,stylus}"
22-
],
16+
"files": ["**/*.{styl,stylus}"],
2317
"customSyntax": "postcss-styl",
24-
"extends": [
25-
"stylelint-stylus/standard"
26-
]
18+
"extends": ["stylelint-stylus/standard"]
2719
}
2820
],
2921
"rules": {
@@ -38,26 +30,22 @@
3830
"media-feature-name-no-vendor-prefix": null,
3931
"property-no-vendor-prefix": null,
4032
"selector-no-vendor-prefix": null,
33+
"selector-class-pattern": null,
34+
"selector-id-pattern": null,
35+
"custom-property-pattern": null,
4136
"value-no-vendor-prefix": null,
4237
"at-rule-no-unknown": [
4338
true,
4439
{
4540
"severity": "warning",
46-
"ignoreAtRules": [
47-
"-moz-document",
48-
"document"
49-
]
41+
"ignoreAtRules": ["-moz-document", "document"]
5042
}
5143
],
5244
"function-no-unknown": [
5345
true,
5446
{
5547
"severity": "warning",
56-
"ignoreFunctions": [
57-
"domain",
58-
"regexp",
59-
"url-prefix"
60-
]
48+
"ignoreFunctions": ["domain", "regexp", "url-prefix"]
6149
}
6250
],
6351
"selector-pseudo-class-no-unknown": [

eslint.config.mjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ export default [
1212
'**/*.min.js',
1313
'**/*.min.cjs',
1414
'**/*.min.mjs',
15+
'SuperchargedLocalDirectoryWebUI.user.js',
16+
'codemirror.js',
17+
'SteamDB-Dark-Mode.user.css',
18+
'WahooFitnessDarkMode.user.css',
19+
'codemirror.min.js',
20+
'ESPN-DarkMode.user.css',
21+
'Skial-CustomTheme.user.css',
1522
],
1623
},
1724
{

0 commit comments

Comments
 (0)