Skip to content

Commit ead5309

Browse files
committed
fix(linter)!: remove react from default plugin set (#11382)
This is a breaking change, but currently, how we check whether a react rule should run is opaque and unclear. For example, the `react/forward-ref-uses-ref` rule checks whether the framework flags `FrameworkFlags::React` is enabled, however this is never set to true meaning that this rule can never run. https://github.com/oxc-project/oxc/blob/bbb7eb1a27ac280febc3702bc5e7eb131dcc005a/crates/oxc_linter/src/rules/react/forward_ref_uses_ref.rs#L99-L101 This PR removes the react rule group from the default plugins, if users which to use the react plugin, they just have to add it to the plugins array. I have made thie change before 1.0, so hopefully the fact that it's breaking is ok.
1 parent 8a34447 commit ead5309

File tree

43 files changed

+45
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+45
-47
lines changed

apps/oxlint/src/snapshots/_--ignore-path fixtures__linter__.customignore --no-ignore [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory:
1414
help: Use the isNaN function to compare with NaN.
1515
1616
Found 1 warning and 0 errors.
17-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1818
----------
1919
CLI result: LintSucceeded
2020
----------

apps/oxlint/src/snapshots/_--ignore-pattern _____.js --ignore-pattern _____.vue [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: --ignore-pattern **/*.js --ignore-pattern **/*.vue fixtures/linter
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 0 files with 101 rules using 1 threads.
9+
Finished in <variable>ms on 0 files with 87 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/_--import-plugin -A all -D no-cycle [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: --import-plugin -A all -D no-cycle fixtures/flow/
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 2 files with 103 rules using 1 threads.
9+
Finished in <variable>ms on 2 files with 89 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/_--import-plugin [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: --import-plugin fixtures/flow/index.mjs
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 1 file with 103 rules using 1 threads.
9+
Finished in <variable>ms on 1 file with 89 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/_--vitest-plugin -c fixtures__eslintrc_vitest_replace__eslintrc.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ working directory:
2323
help: Remove the appending `.skip`
2424
2525
Found 1 warning and 1 error.
26-
Finished in <variable>ms on 1 file with 113 rules using 1 threads.
26+
Finished in <variable>ms on 1 file with 99 rules using 1 threads.
2727
----------
2828
CLI result: LintFoundErrors
2929
----------

apps/oxlint/src/snapshots/_-A all [email protected]

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ working directory:
77
----------
88
{
99
"plugins": [
10-
"react",
1110
"unicorn",
1211
"typescript",
1312
"oxc"

apps/oxlint/src/snapshots/_-D correctness [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory:
1414
help: Remove the debugger statement
1515
1616
Found 0 warnings and 1 error.
17-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1818
----------
1919
CLI result: LintFoundErrors
2020
----------

apps/oxlint/src/snapshots/_-W correctness -A no-debugger [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: -W correctness -A no-debugger fixtures/linter/debugger.js
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 1 file with 100 rules using 1 threads.
9+
Finished in <variable>ms on 1 file with 86 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/_-W no-undef -c fixtures__eslintrc_env__eslintrc_no_env.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ working directory:
1313
`----
1414
1515
Found 1 warning and 0 errors.
16-
Finished in <variable>ms on 1 file with 102 rules using 1 threads.
16+
Finished in <variable>ms on 1 file with 88 rules using 1 threads.
1717
----------
1818
CLI result: LintSucceeded
1919
----------

apps/oxlint/src/snapshots/_-W no-undef -c fixtures__no_undef__eslintrc.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ working directory:
1313
`----
1414
1515
Found 1 warning and 0 errors.
16-
Finished in <variable>ms on 1 file with 102 rules using 1 threads.
16+
Finished in <variable>ms on 1 file with 88 rules using 1 threads.
1717
----------
1818
CLI result: LintSucceeded
1919
----------

apps/oxlint/src/snapshots/_-c fixtures__config_ignore_patterns__ignore_extension__eslintrc.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ working directory:
1212
help: Delete this file or add some code to it.
1313
1414
Found 1 warning and 0 errors.
15-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
15+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1616
----------
1717
CLI result: LintSucceeded
1818
----------

apps/oxlint/src/snapshots/_-c fixtures__eslintrc_env__eslintrc_env_browser.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: -c fixtures/eslintrc_env/eslintrc_env_browser.json fixtures/eslintrc_
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 1 file with 102 rules using 1 threads.
9+
Finished in <variable>ms on 1 file with 88 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/_-c fixtures__eslintrc_off__eslintrc.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ working directory:
1212
help: Delete this file or add some code to it.
1313
1414
Found 1 warning and 0 errors.
15-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
15+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1616
----------
1717
CLI result: LintSucceeded
1818
----------

apps/oxlint/src/snapshots/_-c fixtures__eslintrc_vitest_replace__eslintrc.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: -c fixtures/eslintrc_vitest_replace/eslintrc.json fixtures/eslintrc_v
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
9+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/_-c fixtures__linter__eslintrc.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory:
1414
help: Remove the debugger statement
1515
1616
Found 0 warnings and 1 error.
17-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1818
----------
1919
CLI result: LintFoundErrors
2020
----------

apps/oxlint/src/snapshots/_-c fixtures__no_console_off__eslintrc.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: -c fixtures/no_console_off/eslintrc.json fixtures/no_console_off/test
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
9+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/_-c fixtures__no_empty_allow_empty_catch__eslintrc.json -W no-empty [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: -c fixtures/no_empty_allow_empty_catch/eslintrc.json -W no-empty fixt
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 1 file with 102 rules using 1 threads.
9+
Finished in <variable>ms on 1 file with 88 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/_-c fixtures__no_empty_disallow_empty_catch__eslintrc.json -W no-empty [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory:
1414
help: Remove this block or add a comment inside it
1515
1616
Found 1 warning and 0 errors.
17-
Finished in <variable>ms on 1 file with 102 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 88 rules using 1 threads.
1818
----------
1919
CLI result: LintSucceeded
2020
----------

apps/oxlint/src/snapshots/_-c fixtures__overrides__.oxlintrc.json fixtures__overrides__test.js -c fixtures__overrides__.oxlintrc.json fixtures__overrides__test.ts -c fixtures__overrides__.oxlintrc.json [email protected]

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ working directory:
1515
help: Replace var with let or const
1616
1717
Found 0 warnings and 1 error.
18-
Finished in <variable>ms on 1 file with 103 rules using 1 threads.
18+
Finished in <variable>ms on 1 file with 89 rules using 1 threads.
1919
----------
2020
CLI result: LintFoundErrors
2121
----------
@@ -42,7 +42,7 @@ working directory:
4242
help: Delete this console statement.
4343
4444
Found 1 warning and 1 error.
45-
Finished in <variable>ms on 1 file with 103 rules using 1 threads.
45+
Finished in <variable>ms on 1 file with 89 rules using 1 threads.
4646
----------
4747
CLI result: LintFoundErrors
4848
----------
@@ -61,7 +61,7 @@ working directory:
6161
help: Replace var with let or const
6262
6363
Found 0 warnings and 1 error.
64-
Finished in <variable>ms on 1 file with 103 rules using 1 threads.
64+
Finished in <variable>ms on 1 file with 89 rules using 1 threads.
6565
----------
6666
CLI result: LintFoundErrors
6767
----------

apps/oxlint/src/snapshots/_-c fixtures__overrides__directories-config.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ working directory:
3535
help: Remove the debugger statement
3636

3737
Found 2 warnings and 2 errors.
38-
Finished in <variable>ms on 7 files with 100 rules using 1 threads.
38+
Finished in <variable>ms on 7 files with 86 rules using 1 threads.
3939
----------
4040
CLI result: LintFoundErrors
4141
----------

apps/oxlint/src/snapshots/_-c fixtures__print_config__ban_rules__eslintrc.json -A all -D eqeqeq [email protected]

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ working directory:
77
----------
88
{
99
"plugins": [
10-
"react",
1110
"unicorn",
1211
"typescript",
1312
"oxc"

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ working directory:
4343
help: Remove the debugger statement
4444

4545
Found 4 warnings and 0 errors.
46-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
46+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
4747
----------
4848
CLI result: LintSucceeded
4949
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ working directory:
3636
help: Use the isNaN function to compare with NaN.
3737

3838
Found 4 warnings and 0 errors.
39-
Finished in <variable>ms on 4 files with 101 rules using 1 threads.
39+
Finished in <variable>ms on 4 files with 87 rules using 1 threads.
4040
----------
4141
CLI result: LintSucceeded
4242
----------

apps/oxlint/src/snapshots/_fixtures__linter__debugger.js [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ working directory:
2121
help: Use the isNaN function to compare with NaN.
2222

2323
Found 2 warnings and 0 errors.
24-
Finished in <variable>ms on 2 files with 101 rules using 1 threads.
24+
Finished in <variable>ms on 2 files with 87 rules using 1 threads.
2525
----------
2626
CLI result: LintSucceeded
2727
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory:
1414
help: Remove the debugger statement
1515
1616
Found 1 warning and 0 errors.
17-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1818
----------
1919
CLI result: LintSucceeded
2020
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ working directory:
1515
help: Remove the debugger statement
1616
1717
Found 1 warning and 0 errors.
18-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
18+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1919
----------
2020
CLI result: LintSucceeded
2121
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ working directory:
1616
help: Remove the debugger statement
1717

1818
Found 1 warning and 0 errors.
19-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
19+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
2020
----------
2121
CLI result: LintSucceeded
2222
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ working directory:
2525
help: Remove the debugger statement
2626

2727
Found 2 warnings and 0 errors.
28-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
28+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
2929
----------
3030
CLI result: LintSucceeded
3131
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: fixtures/vue/empty.vue
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
9+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: foo.asdf
66
working directory:
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 0 files with 101 rules using 1 threads.
9+
Finished in <variable>ms on 0 files with 87 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/fixtures__config_ignore_patterns__ignore_directory_-c [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory: fixtures/config_ignore_patterns/ignore_directory
1414
help: Delete this file or add some code to it.
1515
1616
Found 1 warning and 0 errors.
17-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1818
----------
1919
CLI result: LintSucceeded
2020
----------

apps/oxlint/src/snapshots/fixtures__config_ignore_patterns__with_oxlintrc_-c .__test__eslintrc.json --ignore-pattern _.ts [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ working directory: fixtures/config_ignore_patterns/with_oxlintrc
1212
help: Delete this file or add some code to it.
1313
1414
Found 1 warning and 0 errors.
15-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
15+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1616
----------
1717
CLI result: LintSucceeded
1818
----------

apps/oxlint/src/snapshots/fixtures__extends_config_--config extends_rules_config.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory: fixtures/extends_config
1414
help: Delete this console statement.
1515
1616
Found 0 warnings and 1 error.
17-
Finished in <variable>ms on 1 file with 102 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 88 rules using 1 threads.
1818
----------
1919
CLI result: LintFoundErrors
2020
----------

apps/oxlint/src/snapshots/fixtures__extends_config_--config relative_paths__extends_extends_config.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory: fixtures/extends_config
1414
help: Delete this console statement.
1515
1616
Found 0 warnings and 1 error.
17-
Finished in <variable>ms on 1 file with 102 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 88 rules using 1 threads.
1818
----------
1919
CLI result: LintFoundErrors
2020
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ working directory: fixtures/extends_config
3131
help: Remove the debugger statement
3232
3333
Found 3 warnings and 0 errors.
34-
Finished in <variable>ms on 4 files with 101 rules using 1 threads.
34+
Finished in <variable>ms on 4 files with 87 rules using 1 threads.
3535
----------
3636
CLI result: LintSucceeded
3737
----------

apps/oxlint/src/snapshots/fixtures__ignore_file_current_dir_ [email protected]

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments:
66
working directory: fixtures/ignore_file_current_dir
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 0 files with 101 rules using 1 threads.
9+
Finished in <variable>ms on 0 files with 87 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------
@@ -16,7 +16,7 @@ arguments: .
1616
working directory: fixtures/ignore_file_current_dir
1717
----------
1818
Found 0 warnings and 0 errors.
19-
Finished in <variable>ms on 0 files with 101 rules using 1 threads.
19+
Finished in <variable>ms on 0 files with 87 rules using 1 threads.
2020
----------
2121
CLI result: LintSucceeded
2222
----------

apps/oxlint/src/snapshots/fixtures__import-cycle_--import-plugin -D [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ working directory: fixtures/import-cycle
2727
-> ./b - fixtures/import-cycle/b.ts
2828

2929
Found 0 warnings and 2 errors.
30-
Finished in <variable>ms on 2 files with 104 rules using 1 threads.
30+
Finished in <variable>ms on 2 files with 90 rules using 1 threads.
3131
----------
3232
CLI result: LintFoundErrors
3333
----------

apps/oxlint/src/snapshots/fixtures__issue_11054_-c [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ arguments: -c .oxlintrc.json
66
working directory: fixtures/issue_11054
77
----------
88
Found 0 warnings and 0 errors.
9-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
9+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1010
----------
1111
CLI result: LintSucceeded
1212
----------

apps/oxlint/src/snapshots/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ working directory: fixtures/linter
1414
help: Remove the debugger statement
1515
1616
Found 1 warning and 0 errors.
17-
Finished in <variable>ms on 1 file with 101 rules using 1 threads.
17+
Finished in <variable>ms on 1 file with 87 rules using 1 threads.
1818
----------
1919
CLI result: LintSucceeded
2020
----------

apps/oxlint/src/snapshots/fixtures__overrides_env_globals_-c .oxlintrc.json [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ working directory: fixtures/overrides_env_globals
5151
`----
5252

5353
Found 5 warnings and 0 errors.
54-
Finished in <variable>ms on 3 files with 101 rules using 1 threads.
54+
Finished in <variable>ms on 3 files with 87 rules using 1 threads.
5555
----------
5656
CLI result: LintSucceeded
5757
----------

apps/oxlint/src/snapshots/fixtures__overrides_with_plugin_-c [email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ working directory: fixtures/overrides_with_plugin
3232
help: "Write a meaningful title for your test"
3333

3434
Found 1 warning and 2 errors.
35-
Finished in <variable>ms on 2 files with 101 rules using 1 threads.
35+
Finished in <variable>ms on 2 files with 87 rules using 1 threads.
3636
----------
3737
CLI result: LintFoundErrors
3838
----------

0 commit comments

Comments
 (0)