From 53d8c2b0bb6c35438bacf21b618bcf19cde858c1 Mon Sep 17 00:00:00 2001 From: Fabian Unglert Date: Tue, 24 Sep 2024 13:13:32 +0200 Subject: [PATCH] Deleted repolint --- repolint.json | 158 -------------------------------------------------- 1 file changed, 158 deletions(-) delete mode 100644 repolint.json diff --git a/repolint.json b/repolint.json deleted file mode 100644 index 4dff505..0000000 --- a/repolint.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "$schema": "./schema.json", - "version": 2, - "axioms": { - "linguist": "language", - "licensee": "license", - "packagers": "packager" - }, - "rules": { - "license-file-exists": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ "LICENSE.md" ], - "nocase": true - } - } - }, - "readme-file-exists": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ "README*.md" ], - "nocase": true - } - } - }, - "readme-references-license": { - "level": "error", - "rule": { - "type": "file-contents", - "options": { - "globsAll": [ "README*" ], - "content": "license", - "flags": "i" - } - } - }, - "binaries-not-present": { - "level": "warning", - "rule": { - "type": "file-type-exclusion", - "options": { - "type": [ "**/*.exe", "**/*.dll", "!node_modules/**" ] - } - } - }, - "test-directory-exists": { - "level": "warning", - "rule": { - "type": "directory-existence", - "options": { - "globsAny": [ "**/test*" ], - "nocase": true - } - } - }, - "source-directory-exists": { - "level": "warning", - "rule": { - "type": "directory-existence", - "options": { - "globsAny": [ "**/src*" ], - "nocase": true - } - } - }, - "additional-docs-directory-exists": { - "level": "warning", - "rule": { - "type": "directory-existence", - "options": { - "globsAny": [ "**/docs*" ], - "nocase": true - } - } - }, - "integrates-with-ci": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - ".github/workflows/*" - ] - } - } - }, - "markdownlint-config-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - ".markdownlint.yml" - ] - } - } - }, - "apax-yml-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - "apax.yml" - ] - } - } - }, - "gitignore-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - ".gitignore" - ] - } - } - }, - "gitattributes-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - ".gitattributes" - ] - } - } - }, - "apax-files-section-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - "apax-files-section.yml" - ] - } - } - }, - "CODEOWNERS-exit": { - "level": "error", - "rule": { - "type": "file-existence", - "options": { - "globsAny": [ - "CODEOWNERS" - ] - } - } - } - } -}