fop-cli 4.0.4 → 4.1.0
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 +20 -0
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -97,6 +97,11 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
97
97
|
| `--disable-domain-limit=` | Files to skip short domain check (comma-separated) |
|
|
98
98
|
| `--warning-output=` | Output warnings to file instead of stderr |
|
|
99
99
|
| `--git-message=` | Git commit message (skip interactive prompt) |
|
|
100
|
+
| `--create-pr[=TITLE]` | Create PR branch instead of committing to current branch |
|
|
101
|
+
| `--git-pr-branch=NAME` | Base branch for PR (default: auto-detect main/master) |
|
|
102
|
+
| `--fix-typos` | Fix cosmetic rule typos in all files during sort |
|
|
103
|
+
| `--fix-typos-on-add` | Check cosmetic rule typos in git additions before commit |
|
|
104
|
+
| `--auto-fix` | Auto-fix typos without prompting (use with --fix-typos-on-add) |
|
|
100
105
|
| `--config-file=` | Custom config file path |
|
|
101
106
|
| `--show-config` | Show applied configuration and exit |
|
|
102
107
|
| `-h, --help` | Show help message |
|
|
@@ -157,6 +162,21 @@ ignoredirs =
|
|
|
157
162
|
|
|
158
163
|
# File extensions to process
|
|
159
164
|
file-extensions = txt
|
|
165
|
+
|
|
166
|
+
# Create PR branch instead of committing
|
|
167
|
+
create-pr =
|
|
168
|
+
|
|
169
|
+
# Base branch for PR (default: auto-detect)
|
|
170
|
+
git-pr-branch =
|
|
171
|
+
|
|
172
|
+
# Fix cosmetic typos during sort
|
|
173
|
+
fix-typos = false
|
|
174
|
+
|
|
175
|
+
# Check typos in git additions
|
|
176
|
+
fix-typos-on-add = false
|
|
177
|
+
|
|
178
|
+
# Auto-fix without prompting
|
|
179
|
+
auto-fix = false
|
|
160
180
|
```
|
|
161
181
|
|
|
162
182
|
Command line arguments override config file settings.
|
package/install.js
CHANGED
|
@@ -7,7 +7,7 @@ const path = require('path');
|
|
|
7
7
|
const { execSync } = require('child_process');
|
|
8
8
|
|
|
9
9
|
// Configuration - UPDATE THESE FOR YOUR RELEASE
|
|
10
|
-
const VERSION = '4.0
|
|
10
|
+
const VERSION = '4.1.0';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|