Closed ArtofBugs closed 1 day ago
@ArtofBugs exclude
accepts a list of regular expressions and does not accept "true" as global variable to ignore everything.
https://github.com/wakatime/wakatime-cli/blob/develop/USAGE.md#settings-section
Ohh ok, that would explain things. I saw that bools were accepted in the example config table (the one you linked) so I assumed true
worked too. Thanks!
Confirmed it works correctly with regex instead of true
; closing :) Thanks for the quick reply!
We should treat true
as .*
same as other bool/list configs?
Implemented by https://github.com/wakatime/wakatime-cli/pull/1130 and will be released soon.
In my
.wakatime.cfg
right now, I have bothexclude = true
to exclude all projects (along with a list of specific folders to include under theinclude
key) andhide_project_names = true
. I would expect that any folders not in theinclude
list would be ignored, but right now anytime I open any folder in vscode and edit a file, a.wakatime-project
file is created and times for the project appear on my dashboard. Is this intended behavior? I didn't see anything about this behavior in the docs.