From 530684115b59babb2918d12fd5a46f46b3774fcf Mon Sep 17 00:00:00 2001 From: Justus-at-Tazama Date: Mon, 6 Apr 2026 20:31:38 +0200 Subject: [PATCH] ci: disable JS/TS Codacy engines and MD013 markdownlint rule This repo contains only YAML workflow files and Markdown documentation. The Codacy JavaScript analysis tools (eslint, jshint, tslint, stylelint, prettier) have no files to analyse and emit spurious failures. - .codacy.yml: explicitly disable JS/TS Codacy engines - .markdownlint.json: disable MD013 line-length rule --- .codacy.yml | 12 ++++++++++++ .markdownlint.json | 3 +++ 2 files changed, 15 insertions(+) create mode 100644 .codacy.yml create mode 100644 .markdownlint.json diff --git a/.codacy.yml b/.codacy.yml new file mode 100644 index 0000000..6725533 --- /dev/null +++ b/.codacy.yml @@ -0,0 +1,12 @@ +--- +engines: + eslint: + enabled: false + jshint: + enabled: false + tslint: + enabled: false + stylelint: + enabled: false + prettier: + enabled: false diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..67d2ae5 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,3 @@ +{ + "MD013": false +}