File tree Expand file tree Collapse file tree 5 files changed +286
-286
lines changed Expand file tree Collapse file tree 5 files changed +286
-286
lines changed Original file line number Diff line number Diff line change 2
2
[ ![ 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 )
3
3
[ ![ 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 )
4
4
[ ![ 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 )
6
6
![ Istanbul coverage] ( ./coverage/badge.svg )
7
7
8
8
# Other Languages
Original file line number Diff line number Diff line change 2
2
[ ![ 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 )
3
3
[ ![ 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 )
4
4
[ ![ 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 )
6
6
![ Istanbul coverage] ( ./coverage/badge.svg )
7
7
8
8
# Other Languages
Original file line number Diff line number Diff line change 58
58
"test:real" : " node dist/test/real.js"
59
59
},
60
60
"dependencies" : {
61
- "@bhsd/common" : " ^0.6.1 " ,
61
+ "@bhsd/common" : " ^0.6.3 " ,
62
62
"@codemirror/lint" : " ^6.8.4" ,
63
63
"chalk" : " ^4.1.2" ,
64
64
"codejar-async" : " ^4.2.6" ,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ let wordRegex: RegExp;
32
32
try {
33
33
// eslint-disable-next-line prefer-regex-literals, es-x/no-regexp-unicode-property-escapes
34
34
wordRegex = new RegExp ( String . raw `[\p{L}\d]` , 'u' ) ;
35
- } catch {
35
+ } catch /* istanbul ignore next */ {
36
36
wordRegex = / [ ^ \W _ ] / u;
37
37
}
38
38
You can’t perform that action at this time.
0 commit comments