Josh
Josh
Added header to python gitignore file for when a user copies the file into their project they know where to get updated results later. Especially useful for new developers wondering...
Added exclusion for ruff linter default cache folder. The .ruff_cache folder is created when you execute `ruff check` without specifying a cache dir Documentation for the cache-dir default creation. https://docs.astral.sh/ruff/settings/#cache-dir
Below is the command line I used and accidentally left a space in the beginning when I was trying to call a file directly. You can duplicate it with any...
Is there a way to run pre commands before megalinter attempts to pull the plugins? I am using MegaLinter behind a proxy that requires setting the proxy address variables and...
When a markdown file contains line endings of CRLF the markdown table formatter will say there is a style error when ran through MegaLinter. If you let the table formatter...
**Is your feature request related to a problem? Please describe.** .gitlab-ci.yaml files have a before_script, script, and after_script sections for shell code to be used in the build process. Shellcheck...
When using docker if you define an ARG parameter before the FROM [image] line it's only available to the FROM line. Attempting to use it anywhere after the FROM will...