Nico Rikken

Results 175 comments of Nico Rikken

For reference I think @carmenbianca was referring to issue #512

Thanks @raboof! I'm afraid we will encounter more double extensions in the future and then this might be helpful. Do you have some examples for that comment style, ideally where...

I tackled this goal differently: - All in Python - Use pygithub to request all repo's - Handle all repo's sequentially in a for-loop: - Check if the code is...

You can also create a custom set of rules and leave out the words you think are acceptable.

@richm by setting `word_boundary_start: true` https://docs.getwoke.tech/rules/

@Puneethgr thanks for the more elaborate writeup. The `word_boundary_start: true` option actually does work for the distinction between "master" and "ControlMaster" as the latter doesn't have a word boundary before...

To elaborate on the reviewdog example, here is suggested input for reviewdog in the video from the README: ![image](https://github.com/fsfe/reuse-tool/assets/7458098/dfe95963-101b-4fc9-9f37-b734d044a542) Details of accepting input formats and an example are described in...

One question is how to deal with global errors like missing licenses. * Maybe `.: Missing MIT license in LICENSES/` would be an option, so `.` as the filename. *...

Initial attempt in #956 was based on the `FileReport`s, but those only cover the issues of `missing_licenses` and `bad_licenses`. Only the `ProjectReport` covers all issues (`missing_licenses`, `unused_licenses`, `bad_licenses`, `deprecated_licenses`, `licenses_without_extension`,...

I now locally have a working version that assumes the filepath of licenses is in the LICENSES/ directory. That assumption might be a risk for some edge-cases. I'll have to...