rubycritic icon indicating copy to clipboard operation
rubycritic copied to clipboard

How disable storage HTML report files in project?

Open tit opened this issue 6 years ago • 1 comments

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.

tit avatar Jul 06 '19 10:07 tit

A temporary workaround is to provide relative path to rubycritic instead of absolute ones.

See: https://github.com/whitesmith/rubycritic/issues/150#issuecomment-233167848

GWillmann avatar Feb 04 '21 14:02 GWillmann