abelsiqueira / BestieTemplate.jl

Template for Julia Programming Language packages using the copier engine.
http://abelsiqueira.com/BestieTemplate.jl/
Mozilla Public License 2.0
38 stars 9 forks source link

Consider making lychee.toml a hidden file #388

Closed moble closed 1 week ago

moble commented 1 month ago

Description

I always find config files in the base directory a little distracting and confusing. The saving grace is that at least when they are hidden files, they are either not shown or collected together so I can easily skip past them. Currently, lychee.toml violates this so that — for example — if I'm looking for my README.md or Project.toml file, I have to visually sort out lychee.toml.

It would be easy enough to just create it as .lychee.toml, and then just add the arg to Lint.yml to find it:

            - name: Link Checker
              id: lychee
              uses: lycheeverse/lychee-action@v1
              with:
                  fail: true
                  args: --config '.lychee.toml'

Validation and testing

No response

Motivation

No response

Target audience

No response

Can you help?

No response

abelsiqueira commented 1 month ago

I like the idea. Do you want to help?