oxlint-tui 1.0.2 → 1.0.3
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 +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,9 +17,14 @@ Configuring linters often involves jumping between your editor, a massive JSON f
|
|
|
17
17
|
* **View Docs**: Press <kbd>ENTER</kbd> on any rule to open its official documentation in your browser.
|
|
18
18
|
* **Zero Dependencies**: Written in pure Node.js without any heavy TUI libraries.
|
|
19
19
|
|
|
20
|
+
## Important note
|
|
21
|
+
|
|
22
|
+
Documentation links and information about fixability are not available in older versions of oxlint.
|
|
23
|
+
This tool was developed using oxlint version 1.41.0.
|
|
24
|
+
|
|
20
25
|
## Usage
|
|
21
26
|
|
|
22
|
-
###
|
|
27
|
+
### Quick Start (via npx)
|
|
23
28
|
|
|
24
29
|
Run it directly in your project folder (where your `.oxlintrc.json` is located):
|
|
25
30
|
|
|
@@ -27,7 +32,7 @@ Run it directly in your project folder (where your `.oxlintrc.json` is located):
|
|
|
27
32
|
npx oxlint-tui
|
|
28
33
|
```
|
|
29
34
|
|
|
30
|
-
###
|
|
35
|
+
### Custom Config Path
|
|
31
36
|
|
|
32
37
|
If your configuration file is located elsewhere or named differently:
|
|
33
38
|
|
|
@@ -35,7 +40,7 @@ If your configuration file is located elsewhere or named differently:
|
|
|
35
40
|
npx oxlint-tui ./configs/oxlint.json
|
|
36
41
|
```
|
|
37
42
|
|
|
38
|
-
###
|
|
43
|
+
### Global Install
|
|
39
44
|
|
|
40
45
|
If you use oxlint frequently, you can install it globally:
|
|
41
46
|
|