Skip to content

Commit 5618289

Browse files
committed
Merge branch 'main' into mini
2 parents e2b2199 + 433ff92 commit 5618289

File tree

5 files changed

+286
-286
lines changed

5 files changed

+286
-286
lines changed

README-(ZH).md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![CodeQL](https://github.com/bhsd-harry/wikiparser-node/actions/workflows/codeql.yml/badge.svg)](https://github.com/bhsd-harry/wikiparser-node/actions/workflows/codeql.yml)
33
[![CI](https://github.com/bhsd-harry/wikiparser-node/actions/workflows/node.js.yml/badge.svg)](https://github.com/bhsd-harry/wikiparser-node/actions/workflows/node.js.yml)
44
[![jsDelivr hits (npm)](https://img.shields.io/jsdelivr/npm/hm/wikiparser-node)](https://www.npmjs.com/package/wikiparser-node)
5-
[![codebeat badge](https://codebeat.co/badges/7cdd51e6-2c5d-4a22-aae1-f5e352047d54)](https://codebeat.co/projects/github-com-bhsd-harry-wikiparser-node-main)
5+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/a2fbe7641031451baca2947ae6d7891f)](https://app.codacy.com/gh/bhsd-harry/wikiparser-node/dashboard)
66
![Istanbul coverage](./coverage/badge.svg)
77

88
# Other Languages

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![CodeQL](https://github.com/bhsd-harry/wikiparser-node/actions/workflows/codeql.yml/badge.svg)](https://github.com/bhsd-harry/wikiparser-node/actions/workflows/codeql.yml)
33
[![CI](https://github.com/bhsd-harry/wikiparser-node/actions/workflows/node.js.yml/badge.svg)](https://github.com/bhsd-harry/wikiparser-node/actions/workflows/node.js.yml)
44
[![jsDelivr hits (npm)](https://img.shields.io/jsdelivr/npm/hm/wikiparser-node)](https://www.npmjs.com/package/wikiparser-node)
5-
[![codebeat badge](https://codebeat.co/badges/7cdd51e6-2c5d-4a22-aae1-f5e352047d54)](https://codebeat.co/projects/github-com-bhsd-harry-wikiparser-node-main)
5+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/a2fbe7641031451baca2947ae6d7891f)](https://app.codacy.com/gh/bhsd-harry/wikiparser-node/dashboard)
66
![Istanbul coverage](./coverage/badge.svg)
77

88
# Other Languages

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"test:real": "node dist/test/real.js"
5959
},
6060
"dependencies": {
61-
"@bhsd/common": "^0.6.1",
61+
"@bhsd/common": "^0.6.3",
6262
"@codemirror/lint": "^6.8.4",
6363
"chalk": "^4.1.2",
6464
"codejar-async": "^4.2.6",

src/attributes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let wordRegex: RegExp;
3232
try {
3333
// eslint-disable-next-line prefer-regex-literals, es-x/no-regexp-unicode-property-escapes
3434
wordRegex = new RegExp(String.raw`[\p{L}\d]`, 'u');
35-
} catch {
35+
} catch /* istanbul ignore next */ {
3636
wordRegex = /[^\W_]/u;
3737
}
3838

0 commit comments

Comments
 (0)