rubycritic
rubycritic copied to clipboard
How disable storage HTML report files in project?
Hi, I have some project files:
$ ls /project/config/
client.rb
server.rb
I run rubycritic:
$ rubycritic --no-browser /project/config/
rubycritic created /tmp directory with /tmp/rubycritic/overview.html and other files.
It is ok.
But rubycritic created also .html files in project directory:
$ ls /project/config/
client.rb
client.html
server.rb
server.html
How I can disable storage .html report files in project directory?
I want rubycritic to save its files only in /tmp.
A temporary workaround is to provide relative path to rubycritic instead of absolute ones.
See: https://github.com/whitesmith/rubycritic/issues/150#issuecomment-233167848