canonical / charmcraft

Collaborate, build and publish charmed operators for Kubernetes, Linux and Windows.
Apache License 2.0
64 stars 66 forks source link

chore: explicitly use the 'check' command to avoid ruff warning about it #1683

Closed tonyandrewmeyer closed 3 weeks ago

tonyandrewmeyer commented 1 month ago

Modern ruff requires explicitly saying ruff check for checks (since there's format now). Not doing this outputs a warning explaining that it should be done.

This adjusts the templates to include check explicitly (both in lint and format).

cmatsuoka commented 1 month ago

Thanks!