From dba566e76998e289a9ad1a5ba39aec5075517c8f Mon Sep 17 00:00:00 2001 From: bakan0 <119401366+Bakan0@users.noreply.github.com> Date: Mon, 25 Aug 2025 11:57:59 -0400 Subject: [PATCH] docs: fix broken yamllint config link in CONTRIBUTING.md Update yamllint config file reference from yamllint-config.yml to .yamllint.yml to resolve 404 error. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 63d0d558..0a5e5e41 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -88,7 +88,7 @@ Here are some of the guidelines we follow: - Each file, with few exceptions, should end with an empty line. - In most cases, the maximum line length should not exceed 120 characters to make the code more readable. - We use [yamllint](https://yamllint.readthedocs.io) to lint our *yaml* files. You can find the configuration file - [here](https://github.com/LizardByte/.github/blob/master/yamllint-config.yml) in our *.github* repository. + [here](https://github.com/LizardByte/.github/blob/master/.yamllint.yml) in our *.github* repository. - We use [CodeQL](https://codeql.github.com/) and [SonarCloud](https://sonarcloud.io/) to analyze our codebases. There will be a comment on your PR indicating if there are any issues that need to be addressed. Please address these issues if reasonable.