Skip to content

Commit 1c502e7

Browse files
updated eslint version
Signed-off-by: msivasubramaniaan <msivasub@redhat.com>
1 parent d0e4f99 commit 1c502e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/schema-extension-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class SchemaExtensionAPI implements ExtensionAPI {
8080
const [first, second] = label.split(':');
8181
if (first && second) {
8282
label = second.trim();
83-
label = label.replace('.', '\\.');
83+
label = label.replaceAll('.', '\\.');
8484
label = `${first}:[\t ]+${label}`;
8585
}
8686
}

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"compilerOptions": {
3-
"lib": ["es2016","WebWorker"],
3+
"lib": ["es2022","WebWorker"],
44
"module": "commonjs",
55
"moduleResolution": "node",
66
"outDir": "out",
77
"skipLibCheck": true,
88
"sourceMap": true,
9-
"target": "es6"
9+
"target": "es2022"
1010
},
1111
"exclude": ["node_modules", "server", "src/webworker"],
1212
"include": ["src", "test"]

0 commit comments

Comments
 (0)