@abaplint/cli 2.94.10 → 2.94.11
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/README.md +21 -21
- package/abaplint +2 -2
- package/build/cli.js +84 -84
- package/package.json +62 -62
package/README.md
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
# @abaplint/cli
|
|
2
|
-
|
|
3
|
-
[abaplint](https://abaplint.org) command line interface
|
|
4
|
-
|
|
5
|
-
```
|
|
6
|
-
Usage:
|
|
7
|
-
abaplint [<abaplint.json> -f <format> -c --outformat <format> --outfile <file> --fix]
|
|
8
|
-
abaplint -h | --help show this help
|
|
9
|
-
abaplint -v | --version show version
|
|
10
|
-
abaplint -d | --default show default configuration
|
|
11
|
-
|
|
12
|
-
Options:
|
|
13
|
-
-f, --format <format> output format (standard, total, json, summary, junit, checkstyle)
|
|
14
|
-
--outformat <format> output format, use in combination with outfile
|
|
15
|
-
--outfile <file> output issues to file in format
|
|
16
|
-
--fix apply quick fixes to files
|
|
17
|
-
-p output performance information
|
|
18
|
-
-c compress files in memory
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Requirements
|
|
1
|
+
# @abaplint/cli
|
|
2
|
+
|
|
3
|
+
[abaplint](https://abaplint.org) command line interface
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
Usage:
|
|
7
|
+
abaplint [<abaplint.json> -f <format> -c --outformat <format> --outfile <file> --fix]
|
|
8
|
+
abaplint -h | --help show this help
|
|
9
|
+
abaplint -v | --version show version
|
|
10
|
+
abaplint -d | --default show default configuration
|
|
11
|
+
|
|
12
|
+
Options:
|
|
13
|
+
-f, --format <format> output format (standard, total, json, summary, junit, checkstyle)
|
|
14
|
+
--outformat <format> output format, use in combination with outfile
|
|
15
|
+
--outfile <file> output issues to file in format
|
|
16
|
+
--fix apply quick fixes to files
|
|
17
|
+
-p output performance information
|
|
18
|
+
-c compress files in memory
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Requirements
|
|
22
22
|
Node.js 12
|
package/abaplint
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
require("./build/cli");
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
require("./build/cli");
|