diff --git a/.forgejo/workflows/renovate-config-validation.yaml b/.forgejo/workflows/renovate-config-validation.yaml deleted file mode 100644 index 96a34e1..0000000 --- a/.forgejo/workflows/renovate-config-validation.yaml +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Checking Renovate configuration - -on: # yamllint disable-line rule:truthy - pull_request: - -jobs: - validate: - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v4 - - name: Cache npm (renovate) - uses: actions/cache@v4 - with: - path: ~/.npm - key: ${{ runner.os }}-npm-renovate - restore-keys: | - ${{ runner.os }}-npm-renovate- - - name: Validate Renovate configuration - uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1 - env: - NPM_CONFIG_CACHE: ~/.npm -... diff --git a/.forgejo/workflows/yamllint.yaml b/.forgejo/workflows/yamllint.yaml deleted file mode 100644 index 1b5cb26..0000000 --- a/.forgejo/workflows/yamllint.yaml +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: Checking yaml - -on: # yamllint disable-line rule:truthy - pull_request: - -jobs: - yamllint: - name: Run yamllint - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v4 - - name: Run YAML linter - uses: bewuethr/yamllint-action@v1 - with: - config-file: .yamllint.yaml -... diff --git a/.yamllint.yaml b/.yamllint.yaml deleted file mode 100644 index 79bc82f..0000000 --- a/.yamllint.yaml +++ /dev/null @@ -1,30 +0,0 @@ ---- -ignore: | - .platformio - secrets.yaml - -rules: - braces: enable - brackets: enable - colons: enable - commas: enable - comments: enable - comments-indentation: enable - document-end: enable - document-start: enable - empty-lines: - max: 1 - empty-values: disable - hyphens: enable - indentation: enable - key-duplicates: enable - key-ordering: disable - line-length: - max: 100 - new-line-at-end-of-file: enable - new-lines: enable - octal-values: enable - quoted-strings: disable - trailing-spaces: enable - truthy: enable -...