@schoero/configs 1.1.13 → 1.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,16 +45,21 @@
45
45
  "**/{*,.*}/**/*"
46
46
  ],
47
47
  "ignorePaths": [
48
+ "**/.git/**",
48
49
  "**/node_modules/**",
49
50
  "**/vscode-extension/**",
50
- "**/.git/**",
51
- "**/.vscode/**",
51
+ "**/dist/**",
52
52
  "**/lib/**",
53
+ "**/build/**",
54
+ "**/public/**",
55
+ "**/.vercel/**",
53
56
  "**/__snapshots__/**",
54
57
  "**/*.snap",
55
- "package-lock.json",
56
- "yarn.lock",
57
- "pnpm-lock.yaml"
58
+ "**/package-lock.json",
59
+ "**/yarn.lock",
60
+ "**/pnpm-lock.yaml",
61
+ "**/bun.lockb",
62
+ "**/*.css"
58
63
  ],
59
64
  "ignoreRegExpList": [
60
65
  "SpellCheckerDisable",
@@ -273,6 +278,11 @@
273
278
  "name": "HTML-IDREF-for",
274
279
  "pattern": "/\\bfor=\"[^\"]*\"/gi"
275
280
  },
281
+ {
282
+ "name": "HTML-symbol-entity",
283
+ "description": "Matches on HTML symbols like `♣`",
284
+ "pattern": "/&[a-z]+;/gi"
285
+ },
276
286
  {
277
287
  "name": "java-statement-import",
278
288
  "description": "Matches the import statement",
@@ -283,6 +293,26 @@
283
293
  "description": "Ignore member functions etc, these are checked by the compiler.",
284
294
  "pattern": "/(\\.\\w+)+(?=\\()/g"
285
295
  },
296
+ {
297
+ "name": "MARKDOWN-link-reference",
298
+ "description": "Markdown reference link: `[This is a link][reference]`, matches `[reference]`",
299
+ "pattern": "/(?<=\\])\\[[-\\w.`'\"*&;#@ ]+\\]/g"
300
+ },
301
+ {
302
+ "name": "MARKDOWN-link-footer",
303
+ "description": "Markdown referenced link: `[reference]: https://www.google.com`, matches the entire reference.",
304
+ "pattern": "/\\[[-\\w.`'\"*&;#@ ]+\\]:( [^\\s]*)?/g"
305
+ },
306
+ {
307
+ "name": "MARKDOWN-link",
308
+ "description": "Markdown link: `[link text](link)`, matches `link`",
309
+ "pattern": "/(?<=\\]\\()[^)\\s]+/g"
310
+ },
311
+ {
312
+ "name": "MARKDOWN-anchor",
313
+ "description": "Markdown Anchors: `<a id=\"my_link\"></a>`, matches `my_link`",
314
+ "pattern": "/(?<=<a\\s+id=\")[^\"\\s]+/g"
315
+ },
286
316
  {
287
317
  "name": "sql-hex-number",
288
318
  "pattern": "/0x[a-f0-9]*/gi"
package/eslint/jsx.js CHANGED
@@ -36,7 +36,7 @@ export const jsx = [
36
36
  "eslint-plugin-stylistic-jsx/jsx-function-call-newline": ["warn", "multiline"],
37
37
  "eslint-plugin-stylistic-jsx/jsx-first-prop-new-line": ["warn", "multiline-multiprop"],
38
38
  "eslint-plugin-stylistic-jsx/jsx-indent": ["warn", 2],
39
- "eslint-plugin-stylistic-jsx/jsx-pascal-case": "warn",
39
+ "eslint-plugin-stylistic-jsx/jsx-pascal-case": ["warn", { allowAllCaps: true }],
40
40
  "eslint-plugin-stylistic-jsx/jsx-indent-props": ["warn", 2],
41
41
  "eslint-plugin-stylistic-jsx/jsx-max-props-per-line": ["warn", { maximum: 1, when: "multiline" }],
42
42
  "eslint-plugin-stylistic-jsx/jsx-one-expression-per-line": ["warn", { allow: "single-line" }],
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.13",
2
+ "version": "1.1.15",
3
3
  "type": "module",
4
4
  "name": "@schoero/configs",
5
5
  "description": "",
@@ -76,7 +76,7 @@
76
76
  },
77
77
  "dependencies": {
78
78
  "@cspell/dict-bash": "^4.1.8",
79
- "@cspell/dict-companies": "^3.1.7",
79
+ "@cspell/dict-companies": "^3.1.9",
80
80
  "@cspell/dict-css": "^4.0.16",
81
81
  "@cspell/dict-de-ch": "^1.2.3",
82
82
  "@cspell/dict-en_us": "^4.3.28",
@@ -88,42 +88,42 @@
88
88
  "@cspell/dict-lorem-ipsum": "^4.0.3",
89
89
  "@cspell/dict-markdown": "^2.0.7",
90
90
  "@cspell/dict-node": "^5.0.5",
91
- "@cspell/dict-npm": "^5.1.14",
91
+ "@cspell/dict-npm": "^5.1.18",
92
92
  "@cspell/dict-public-licenses": "^2.0.11",
93
- "@cspell/dict-software-terms": "^4.1.17",
93
+ "@cspell/dict-software-terms": "^4.1.20",
94
94
  "@cspell/dict-typescript": "^3.1.11",
95
- "@stylistic/eslint-plugin-js": "^2.11.0",
96
- "@stylistic/eslint-plugin-jsx": "^2.11.0",
97
- "@stylistic/eslint-plugin-plus": "^2.11.0",
98
- "@stylistic/eslint-plugin-ts": "^2.11.0",
99
- "@typescript-eslint/eslint-plugin": "^8.16.0",
100
- "@typescript-eslint/parser": "^8.16.0",
101
- "cspell-lib": "^8.16.1",
95
+ "@stylistic/eslint-plugin-js": "^2.12.1",
96
+ "@stylistic/eslint-plugin-jsx": "^2.12.1",
97
+ "@stylistic/eslint-plugin-plus": "^2.12.1",
98
+ "@stylistic/eslint-plugin-ts": "^2.12.1",
99
+ "@typescript-eslint/eslint-plugin": "^8.18.1",
100
+ "@typescript-eslint/parser": "^8.18.1",
101
+ "cspell-lib": "^8.17.1",
102
102
  "eslint-plugin-import-newlines": "^1.4.0",
103
- "eslint-plugin-import-x": "^4.4.3",
104
- "eslint-plugin-jsdoc": "^50.6.0",
103
+ "eslint-plugin-import-x": "^4.5.1",
104
+ "eslint-plugin-jsdoc": "^50.6.1",
105
105
  "eslint-plugin-jsonc": "^2.18.2",
106
106
  "eslint-plugin-markdown": "^5.1.0",
107
- "eslint-plugin-perfectionist": "^4.1.2",
107
+ "eslint-plugin-perfectionist": "^4.3.0",
108
108
  "eslint-plugin-unicorn": "^56.0.1",
109
109
  "eslint-plugin-unused-imports": "^4.1.4",
110
110
  "eslint-plugin-vitest": "^0.5.4",
111
111
  "eslint-plugin-yml": "^1.16.0",
112
- "markdownlint-cli2": "^0.15.0",
113
- "vite-tsconfig-paths": "^5.1.3",
112
+ "markdownlint-cli2": "^0.16.0",
113
+ "vite-tsconfig-paths": "^5.1.4",
114
114
  "vitest-github-actions-reporter": "^0.11.1"
115
115
  },
116
116
  "optionalDependencies": {
117
117
  "eslint-plugin-readable-tailwind": "^1.8.2"
118
118
  },
119
119
  "devDependencies": {
120
- "@types/node": "^22.10.1",
120
+ "@types/node": "^22.10.2",
121
121
  "changelogen": "^0.5.7",
122
- "cspell": "^8.16.1",
123
- "eslint": "^9.16.0",
124
- "markdownlint": "^0.36.1",
122
+ "cspell": "^8.17.1",
123
+ "eslint": "^9.17.0",
124
+ "markdownlint": "^0.37.1",
125
125
  "vite": "^5.4.10",
126
- "vitest": "^2.1.6"
126
+ "vitest": "^2.1.8"
127
127
  },
128
128
  "keywords": []
129
129
  }