diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 742ec57..6b07bec 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,7 @@ updates: - package-ecosystem: github-actions directory: / schedule: - interval: weekly + interval: monthly groups: actions-minor: update-types: @@ -13,7 +13,7 @@ updates: - package-ecosystem: npm directory: / schedule: - interval: weekly + interval: monthly groups: npm-development: dependency-type: development diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml deleted file mode 100644 index 6d79773..0000000 --- a/.github/linters/.markdown-lint.yml +++ /dev/null @@ -1,7 +0,0 @@ -# Unordered list style -MD004: - style: dash - -# Ordered list item prefix -MD029: - style: one 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/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 14d7281..0000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: CodeQL - -on: - push: - branches: - - main - pull_request: - branches: - - main - schedule: - - cron: '31 7 * * 3' - -permissions: - actions: read - checks: write - contents: read - security-events: write - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - language: - - TypeScript - - steps: - - name: Checkout - id: checkout - uses: actions/checkout@v4 - - - name: Initialize CodeQL - id: initialize - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - source-root: src - - - name: Autobuild - id: autobuild - uses: github/codeql-action/autobuild@v3 - - - name: Perform CodeQL Analysis - id: analyze - uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 428ca1b..97ff856 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -38,10 +38,5 @@ jobs: id: super-linter uses: super-linter/super-linter/slim@v6 env: - DEFAULT_BRANCH: main - FILTER_REGEX_EXCLUDE: dist/**/* GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TYPESCRIPT_DEFAULT_STYLE: prettier - VALIDATE_ALL_CODEBASE: true - VALIDATE_JAVASCRIPT_STANDARD: false - VALIDATE_JSCPD: false