@abaplint/cli 2.100.5 → 2.100.6
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.
- package/build/cli.js +4 -1
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -47757,7 +47757,7 @@ class Registry {
|
|
|
47757
47757
|
}
|
|
47758
47758
|
static abaplintVersion() {
|
|
47759
47759
|
// magic, see build script "version.sh"
|
|
47760
|
-
return "2.100.
|
|
47760
|
+
return "2.100.6";
|
|
47761
47761
|
}
|
|
47762
47762
|
getDDICReferences() {
|
|
47763
47763
|
return this.ddicReferences;
|
|
@@ -63436,6 +63436,9 @@ class ReduceStringTemplates extends _abap_rule_1.ABAPRule {
|
|
|
63436
63436
|
for (const second of source.findDirectExpressions(Expressions.StringTemplate)) {
|
|
63437
63437
|
issues.push(issue_1.Issue.atToken(file, second.getFirstToken(), "Nested string templates, reduce", this.getMetadata().key, this.conf.severity));
|
|
63438
63438
|
}
|
|
63439
|
+
if (ts.findDirectExpression(Expressions.StringTemplateFormatting)) {
|
|
63440
|
+
continue;
|
|
63441
|
+
}
|
|
63439
63442
|
for (const constant of source.findDirectExpressions(Expressions.Constant)) {
|
|
63440
63443
|
for (const constantString of constant.findDirectExpressions(Expressions.ConstantString)) {
|
|
63441
63444
|
issues.push(issue_1.Issue.atToken(file, constantString.getFirstToken(), "Constant string in text template, reduce", this.getMetadata().key, this.conf.severity));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.100.
|
|
3
|
+
"version": "2.100.6",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.100.
|
|
41
|
+
"@abaplint/core": "^2.100.6",
|
|
42
42
|
"@types/chai": "^4.3.5",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.2",
|