From 558e151cb67b2bdb8819af381bfb9d756fd28dee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 22:35:44 +0000 Subject: [PATCH 01/15] --- linters/trunk-toolbox/plugin.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/linters/trunk-toolbox/plugin.yaml b/linters/trunk-toolbox/plugin.yaml index 561c98a7d..89139c3bc 100644 --- a/linters/trunk-toolbox/plugin.yaml +++ b/linters/trunk-toolbox/plugin.yaml @@ -2,7 +2,7 @@ version: 0.1 downloads: - name: trunk-toolbox - version: 0.4.1 + version: 0.5.0 downloads: - os: linux: unknown-linux-gnu @@ -17,7 +17,7 @@ tools: - name: trunk-toolbox download: trunk-toolbox shims: [trunk-toolbox] - known_good_version: 0.4.1 + known_good_version: 0.5.0 lint: definitions: - name: trunk-toolbox @@ -34,6 +34,9 @@ lint: batch: true success_codes: [0] read_output_from: tmp_file + max_concurrency: 1 + disable_upstream: false + direct_configs: [toolbox.toml, log4rs.yaml] - name: lint run: trunk-toolbox --upstream=${upstream-ref} --results=${tmpfile} ${target} output: sarif From 2383875f321f68ef95a7b663f3c1e5cdb06d9b67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 22:36:54 +0000 Subject: [PATCH 02/15] update config entries to include new log control file --- linters/trunk-toolbox/plugin.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linters/trunk-toolbox/plugin.yaml b/linters/trunk-toolbox/plugin.yaml index 89139c3bc..9380e4e11 100644 --- a/linters/trunk-toolbox/plugin.yaml +++ b/linters/trunk-toolbox/plugin.yaml @@ -33,10 +33,10 @@ lint: output: sarif batch: true success_codes: [0] - read_output_from: tmp_file - max_concurrency: 1 disable_upstream: false + read_output_from: tmp_file direct_configs: [toolbox.toml, log4rs.yaml] + max_concurrency: 1 - name: lint run: trunk-toolbox --upstream=${upstream-ref} --results=${tmpfile} ${target} output: sarif From 26c1d8709e2e2527ef46a023262188b3832833d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:09:42 +0000 Subject: [PATCH 03/15] test --- .trunk/trunk.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index af5f3351f..b68f8789a 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -43,7 +43,7 @@ lint: # enabled linters inherited from github.com/trunk-io/configs plugin - definition-checker - eslint@9.13.0 - - trunk-toolbox@0.4.1 + - trunk-toolbox@0.5.0 disabled: - pylint # pylint diagnostics are too strict - semgrep @@ -95,11 +95,12 @@ actions: enabled: # enabled actions inherited from github.com/trunk-io/configs plugin - - linter-test-helper - - npm-check-pre-push - - remove-release-snapshots - - repo-tests - - tool-test-helper + - trunk-check-pre-push + # - linter-test-helper + # - npm-check-pre-push + # - remove-release-snapshots + # - repo-tests + # - tool-test-helper tools: enabled: - clangd-indexing-tools@18.1.3 From d6b7c546e16436ec89c3efacb787f23e280fd779 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:11:26 +0000 Subject: [PATCH 04/15] enable more toolbox rules --- .trunk/config/log4rs.yaml | 24 ++++++++++++++++++++++++ .trunk/config/toolbox.toml | 18 ++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .trunk/config/log4rs.yaml create mode 100644 .trunk/config/toolbox.toml diff --git a/.trunk/config/log4rs.yaml b/.trunk/config/log4rs.yaml new file mode 100644 index 000000000..65be5ed54 --- /dev/null +++ b/.trunk/config/log4rs.yaml @@ -0,0 +1,24 @@ +appenders: + stdout: + encoder: + pattern: "{d(%H:%M:%S)} | {({l}):5.5} | {f}:{L} | {m}{n}" + kind: console + + # Appender for the step strategy + file: + kind: file + path: toolbox.log + encoder: + pattern: "{d(%H:%M:%S)} | {({l}):5.5} | {f}:{L} | {m}{n}" + +root: + # ok + level: trace + appenders: + - stdout + +loggers: + step: + level: trace + appenders: + - file diff --git a/.trunk/config/toolbox.toml b/.trunk/config/toolbox.toml new file mode 100644 index 000000000..9adf7d859 --- /dev/null +++ b/.trunk/config/toolbox.toml @@ -0,0 +1,18 @@ +[ifchange] +# Default value: true +#enabled = true + +[donotland] +# Default value: true +#enabled = true + +[todo] +# Default value: false +#enabled = true + +[neveredit] +# Default value: false +#enabled = true + +# Default value: [] +#paths = [] From c81a85ea120dd716f7bc5b0a2d6e44cc2c8154ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:13:50 +0000 Subject: [PATCH 05/15] pre-push override --- .trunk/trunk.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index b68f8789a..bb8db0e23 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -93,6 +93,13 @@ actions: '/^\/\/ trunk-upgrade-validation:RELEASE/d' {} shell: bash + - id: trunk-check-pre-push + run: trunk check --verbose -n -t git-push --commit-ref-from-pre-push '${hook_stdin_path}' + interactive: true + triggers: + - git_hooks: [pre-push] + notify_on_error: false + enabled: # enabled actions inherited from github.com/trunk-io/configs plugin - trunk-check-pre-push From 3caadb32b36d4b9a4fbed5dc368cc1869f0f3a43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:14:21 +0000 Subject: [PATCH 06/15] --- .trunk/trunk.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index bb8db0e23..22451bb3a 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -94,7 +94,7 @@ actions: shell: bash - id: trunk-check-pre-push - run: trunk check --verbose -n -t git-push --commit-ref-from-pre-push '${hook_stdin_path}' + run: trunk check -n --verbose -t git-push --commit-ref-from-pre-push '${hook_stdin_path}' interactive: true triggers: - git_hooks: [pre-push] From 3f62b4a236c9604bc547fccd10c9c300d46adbd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:15:24 +0000 Subject: [PATCH 07/15] verbse --- .trunk/trunk.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index 22451bb3a..20f30ed25 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -94,7 +94,7 @@ actions: shell: bash - id: trunk-check-pre-push - run: trunk check -n --verbose -t git-push --commit-ref-from-pre-push '${hook_stdin_path}' + run: trunk check -n -t git-push --commit-ref-from-pre-push '${hook_stdin_path}' --verbose interactive: true triggers: - git_hooks: [pre-push] From 0fb894cc2b4ffb4a4d77df8bb7e7e90a7f45c991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:16:20 +0000 Subject: [PATCH 08/15] verbse --- .trunk/config/log4rs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.trunk/config/log4rs.yaml b/.trunk/config/log4rs.yaml index 65be5ed54..090964eaf 100644 --- a/.trunk/config/log4rs.yaml +++ b/.trunk/config/log4rs.yaml @@ -7,7 +7,7 @@ appenders: # Appender for the step strategy file: kind: file - path: toolbox.log + path: ~/toolbox.log encoder: pattern: "{d(%H:%M:%S)} | {({l}):5.5} | {f}:{L} | {m}{n}" From 8bf233c960b630616b27e82a73b34425804aeee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:21:52 +0000 Subject: [PATCH 09/15] ok --- .trunk/config/log4rs.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.trunk/config/log4rs.yaml b/.trunk/config/log4rs.yaml index 090964eaf..baf6fa471 100644 --- a/.trunk/config/log4rs.yaml +++ b/.trunk/config/log4rs.yaml @@ -7,18 +7,12 @@ appenders: # Appender for the step strategy file: kind: file - path: ~/toolbox.log + path: toolbox.log encoder: pattern: "{d(%H:%M:%S)} | {({l}):5.5} | {f}:{L} | {m}{n}" root: - # ok level: trace appenders: - stdout - -loggers: - step: - level: trace - appenders: - - file + - file From 8a72284d9182b9e0ce2d9bdb42e3f2cb4b4fdd6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:22:27 +0000 Subject: [PATCH 10/15] ok --- .trunk/config/log4rs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.trunk/config/log4rs.yaml b/.trunk/config/log4rs.yaml index baf6fa471..7d458cf06 100644 --- a/.trunk/config/log4rs.yaml +++ b/.trunk/config/log4rs.yaml @@ -7,7 +7,7 @@ appenders: # Appender for the step strategy file: kind: file - path: toolbox.log + path: /eli/home/GitHub/plugins/toolbox.log encoder: pattern: "{d(%H:%M:%S)} | {({l}):5.5} | {f}:{L} | {m}{n}" From fcc2012e5afc0dadad2d421b0cb0001431a06fb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:23:09 +0000 Subject: [PATCH 11/15] ok --- .trunk/config/log4rs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.trunk/config/log4rs.yaml b/.trunk/config/log4rs.yaml index 7d458cf06..76969abc8 100644 --- a/.trunk/config/log4rs.yaml +++ b/.trunk/config/log4rs.yaml @@ -7,7 +7,7 @@ appenders: # Appender for the step strategy file: kind: file - path: /eli/home/GitHub/plugins/toolbox.log + path: /home/eli/Github/plugins/toolbox.log encoder: pattern: "{d(%H:%M:%S)} | {({l}):5.5} | {f}:{L} | {m}{n}" From 4e7768401872fee5ff4fd007215c633f25ef1c97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:27:34 +0000 Subject: [PATCH 12/15] --- .toolbox.log.swp | Bin 0 -> 12288 bytes .trunk/config/log4rs.yaml | 2 +- .trunk/trunk.yaml | 20 ++++++-------------- toolbox.log | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 39 insertions(+), 15 deletions(-) create mode 100644 .toolbox.log.swp create mode 100644 toolbox.log diff --git a/.toolbox.log.swp b/.toolbox.log.swp new file mode 100644 index 0000000000000000000000000000000000000000..20f3ae738e64dcbb81f549e2e194d855750df64b GIT binary patch literal 12288 zcmeI2J8#oa6vt0_wm<>33*#jSbxQ2K+NJ{%k18orK>|uem&l17=Yn%@WIHHD2qqX1 z3ll3}fPrto!h&FDVneVquySk+x_LNBA3;PMEC1SYuFtvmcOHq>Y5g-CYV4?{4%_(?{Gd>W_ znnmZSu5@u1QIYzfY%2B)(+w1@&ErUTEnYT z0M}4oPXataB~f2y@fwvyeK-Md7d3}^e;lt-XHajB0bED@m;rc+(opZF0k%-zjsiSI zT|j+40`MGl9`*4sfQ9;wb9jLY=28mgLkAHc0+T@?lU>1AKEoceTQ@FVUd6NLRyDWf zSe_=V`<7d_Ozx*#ZzZ#gA1;LVf?ErWd(7mXQE@C22HN4Zad7cm$;X*GU_*_hNE+?7sfTA z+NY$K?a`CIZvu=|$XMGoZvWXg=*uxwbW{P6D<$HC1FmG=KUK+NTgMJNMHinX9gC0K zLb_q~1s7O(L6i91w1>pHw@JjNRaY;{jjfU4S~jrc~R?z$i6(Ebb~b cw&iAN%cRuk_nWVW@c)$>rADjB3!SO)69UX4)&Kwi literal 0 HcmV?d00001 diff --git a/.trunk/config/log4rs.yaml b/.trunk/config/log4rs.yaml index 76969abc8..bd6a5871e 100644 --- a/.trunk/config/log4rs.yaml +++ b/.trunk/config/log4rs.yaml @@ -7,7 +7,7 @@ appenders: # Appender for the step strategy file: kind: file - path: /home/eli/Github/plugins/toolbox.log + path: { REPLACE_THIS_WITH_PATH_WHERE_YOU_WANT_LOGFILE } encoder: pattern: "{d(%H:%M:%S)} | {({l}):5.5} | {f}:{L} | {m}{n}" diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index 20f30ed25..af5f3351f 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -43,7 +43,7 @@ lint: # enabled linters inherited from github.com/trunk-io/configs plugin - definition-checker - eslint@9.13.0 - - trunk-toolbox@0.5.0 + - trunk-toolbox@0.4.1 disabled: - pylint # pylint diagnostics are too strict - semgrep @@ -93,21 +93,13 @@ actions: '/^\/\/ trunk-upgrade-validation:RELEASE/d' {} shell: bash - - id: trunk-check-pre-push - run: trunk check -n -t git-push --commit-ref-from-pre-push '${hook_stdin_path}' --verbose - interactive: true - triggers: - - git_hooks: [pre-push] - notify_on_error: false - enabled: # enabled actions inherited from github.com/trunk-io/configs plugin - - trunk-check-pre-push - # - linter-test-helper - # - npm-check-pre-push - # - remove-release-snapshots - # - repo-tests - # - tool-test-helper + - linter-test-helper + - npm-check-pre-push + - remove-release-snapshots + - repo-tests + - tool-test-helper tools: enabled: - clangd-indexing-tools@18.1.3 diff --git a/toolbox.log b/toolbox.log new file mode 100644 index 000000000..6c0581e5a --- /dev/null +++ b/toolbox.log @@ -0,0 +1,32 @@ +23:23:49 | DEBUG | src/main.rs:206 | logging initialized - "/tmp/trunk-1000/HmuGi9/log4rs.yaml" +23:23:49 | DEBUG | src/rules/pls_no_land.rs:46 | scanning 1 files for pls_no_land +23:23:49 | DEBUG | src/rules/if_change_then_change.rs:125 | scanning 1 files for if_change_then_change +23:23:49 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/trunk.yaml +23:23:49 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/trunk.yaml +23:23:49 | TRACE | src/rules/never_edit.rs:28 | 'neveredit' is disabled +23:23:49 | DEBUG | src/main.rs:206 | logging initialized - "/tmp/trunk-1000/yoWHZd/log4rs.yaml" +23:23:49 | DEBUG | src/rules/pls_no_land.rs:46 | scanning 1 files for pls_no_land +23:23:49 | DEBUG | src/rules/if_change_then_change.rs:125 | scanning 1 files for if_change_then_change +23:23:49 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/trunk.yaml +23:23:49 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/trunk.yaml +23:23:49 | TRACE | src/rules/never_edit.rs:28 | 'neveredit' is disabled +23:23:52 | DEBUG | src/main.rs:206 | logging initialized - "/tmp/trunk-1000/W0M4x6/log4rs.yaml" +23:23:52 | DEBUG | src/rules/pls_no_land.rs:46 | scanning 4 files for pls_no_land +23:23:52 | DEBUG | src/rules/if_change_then_change.rs:125 | scanning 4 files for if_change_then_change +23:23:52 | DEBUG | src/rules/pls_no_land.rs:70 | ignoring ignored file .trunk/config/toolbox.toml +23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/trunk.yaml +23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/config/log4rs.yaml +23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of linters/trunk-toolbox/plugin.yaml +23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/config/log4rs.yaml +23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/config/toolbox.toml +23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of linters/trunk-toolbox/plugin.yaml +23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/trunk.yaml +23:23:52 | TRACE | src/rules/never_edit.rs:28 | 'neveredit' is disabled +23:23:52 | DEBUG | src/main.rs:206 | logging initialized - "/tmp/trunk-1000/37ahSo/log4rs.yaml" +23:23:52 | DEBUG | src/rules/pls_no_land.rs:46 | scanning 2 files for pls_no_land +23:23:52 | DEBUG | src/rules/if_change_then_change.rs:125 | scanning 2 files for if_change_then_change +23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/trunk.yaml +23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of linters/trunk-toolbox/plugin.yaml +23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of linters/trunk-toolbox/plugin.yaml +23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/trunk.yaml +23:23:52 | TRACE | src/rules/never_edit.rs:28 | 'neveredit' is disabled From 30c6c28799a4a59ad0bf57beb4d7a8957a5e6302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:27:46 +0000 Subject: [PATCH 13/15] --- .trunk/config/log4rs.yaml | 1 - .trunk/trunk.yaml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.trunk/config/log4rs.yaml b/.trunk/config/log4rs.yaml index bd6a5871e..bf3a93b2a 100644 --- a/.trunk/config/log4rs.yaml +++ b/.trunk/config/log4rs.yaml @@ -4,7 +4,6 @@ appenders: pattern: "{d(%H:%M:%S)} | {({l}):5.5} | {f}:{L} | {m}{n}" kind: console - # Appender for the step strategy file: kind: file path: { REPLACE_THIS_WITH_PATH_WHERE_YOU_WANT_LOGFILE } diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index af5f3351f..1c6255e6a 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -43,7 +43,7 @@ lint: # enabled linters inherited from github.com/trunk-io/configs plugin - definition-checker - eslint@9.13.0 - - trunk-toolbox@0.4.1 + - trunk-toolbox@0.5.0 disabled: - pylint # pylint diagnostics are too strict - semgrep From fb0600bb687ab150a78b5052a71cf69713144d12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:30:02 +0000 Subject: [PATCH 14/15] --- .trunk/config/toolbox.toml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .trunk/config/toolbox.toml diff --git a/.trunk/config/toolbox.toml b/.trunk/config/toolbox.toml deleted file mode 100644 index 9adf7d859..000000000 --- a/.trunk/config/toolbox.toml +++ /dev/null @@ -1,18 +0,0 @@ -[ifchange] -# Default value: true -#enabled = true - -[donotland] -# Default value: true -#enabled = true - -[todo] -# Default value: false -#enabled = true - -[neveredit] -# Default value: false -#enabled = true - -# Default value: [] -#paths = [] From 904e004a2125addf492a2e5b9e2f80b391530050 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEli?= Date: Wed, 30 Oct 2024 23:30:21 +0000 Subject: [PATCH 15/15] --- toolbox.log | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 toolbox.log diff --git a/toolbox.log b/toolbox.log deleted file mode 100644 index 6c0581e5a..000000000 --- a/toolbox.log +++ /dev/null @@ -1,32 +0,0 @@ -23:23:49 | DEBUG | src/main.rs:206 | logging initialized - "/tmp/trunk-1000/HmuGi9/log4rs.yaml" -23:23:49 | DEBUG | src/rules/pls_no_land.rs:46 | scanning 1 files for pls_no_land -23:23:49 | DEBUG | src/rules/if_change_then_change.rs:125 | scanning 1 files for if_change_then_change -23:23:49 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/trunk.yaml -23:23:49 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/trunk.yaml -23:23:49 | TRACE | src/rules/never_edit.rs:28 | 'neveredit' is disabled -23:23:49 | DEBUG | src/main.rs:206 | logging initialized - "/tmp/trunk-1000/yoWHZd/log4rs.yaml" -23:23:49 | DEBUG | src/rules/pls_no_land.rs:46 | scanning 1 files for pls_no_land -23:23:49 | DEBUG | src/rules/if_change_then_change.rs:125 | scanning 1 files for if_change_then_change -23:23:49 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/trunk.yaml -23:23:49 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/trunk.yaml -23:23:49 | TRACE | src/rules/never_edit.rs:28 | 'neveredit' is disabled -23:23:52 | DEBUG | src/main.rs:206 | logging initialized - "/tmp/trunk-1000/W0M4x6/log4rs.yaml" -23:23:52 | DEBUG | src/rules/pls_no_land.rs:46 | scanning 4 files for pls_no_land -23:23:52 | DEBUG | src/rules/if_change_then_change.rs:125 | scanning 4 files for if_change_then_change -23:23:52 | DEBUG | src/rules/pls_no_land.rs:70 | ignoring ignored file .trunk/config/toolbox.toml -23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/trunk.yaml -23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/config/log4rs.yaml -23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of linters/trunk-toolbox/plugin.yaml -23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/config/log4rs.yaml -23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/config/toolbox.toml -23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of linters/trunk-toolbox/plugin.yaml -23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/trunk.yaml -23:23:52 | TRACE | src/rules/never_edit.rs:28 | 'neveredit' is disabled -23:23:52 | DEBUG | src/main.rs:206 | logging initialized - "/tmp/trunk-1000/37ahSo/log4rs.yaml" -23:23:52 | DEBUG | src/rules/pls_no_land.rs:46 | scanning 2 files for pls_no_land -23:23:52 | DEBUG | src/rules/if_change_then_change.rs:125 | scanning 2 files for if_change_then_change -23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of .trunk/trunk.yaml -23:23:52 | TRACE | src/rules/pls_no_land.rs:84 | scanning contents of linters/trunk-toolbox/plugin.yaml -23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of linters/trunk-toolbox/plugin.yaml -23:23:52 | TRACE | src/rules/if_change_then_change.rs:55 | scanning contents of .trunk/trunk.yaml -23:23:52 | TRACE | src/rules/never_edit.rs:28 | 'neveredit' is disabled