diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 742ec57..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,26 +0,0 @@ -version: 2 -updates: - - package-ecosystem: github-actions - directory: / - schedule: - interval: weekly - groups: - actions-minor: - update-types: - - minor - - patch - - - package-ecosystem: npm - directory: / - schedule: - interval: weekly - groups: - npm-development: - dependency-type: development - update-types: - - minor - - patch - npm-production: - dependency-type: production - update-types: - - patch diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml deleted file mode 100644 index cb5883f..0000000 --- a/.github/linters/.markdown-lint.yml +++ /dev/null @@ -1,18 +0,0 @@ -# Unordered list style -MD004: - style: dash - -# Ordered list item prefix -MD029: - style: one - -# Spaces after list markers -MD030: - ul_single: 1 - ol_single: 1 - ul_multi: 1 - ol_multi: 1 - -# Code block style -MD046: - style: fenced diff --git a/.github/linters/.yaml-lint.yml b/.github/linters/.yaml-lint.yml deleted file mode 100644 index c975a33..0000000 --- a/.github/linters/.yaml-lint.yml +++ /dev/null @@ -1,10 +0,0 @@ -rules: - document-end: disable - document-start: - level: warning - present: false - line-length: - level: warning - max: 80 - allow-non-breakable-words: true - allow-non-breakable-inline-mappings: true diff --git a/.github/linters/tsconfig.json b/.github/linters/tsconfig.json deleted file mode 100644 index a34cf90..0000000 --- a/.github/linters/tsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "extends": "../../tsconfig.json", - "compilerOptions": { - "noEmit": true - }, - "include": ["../../__tests__/**/*", "../../src/**/*"], - "exclude": ["../../dist", "../../node_modules", "../../coverage", "*.json"] -}