Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: "weekly"
interval: 'weekly'
commit-message:
prefix: "ci"
include: "scope"
prefix: 'ci'
include: 'scope'
groups:
github-actions:
patterns:
- "*"
- '*'

- package-ecosystem: "pip"
directory: "/"
- package-ecosystem: 'pip'
directory: '/'
schedule:
interval: "weekly"
interval: 'weekly'
commit-message:
prefix: "deps"
include: "scope"
prefix: 'deps'
include: 'scope'
groups:
python-dependencies:
patterns:
- "*"
- '*'
1 change: 0 additions & 1 deletion .github/linters/.yaml-lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

extends: default

rules:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
name: 'CodeQL'

on:
push:
Expand Down
13 changes: 13 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
default_stages: [pre-commit, pre-push]
default_language_version:
python: python3
node: 24.12.0
repos:
- repo: meta
hooks:
- id: check-hooks-apply
name: check that hooks apply
description: check that all the hooks apply to the repository
- repo: local
hooks:
- id: prettier
name: run prettier
description: format files with prettier
entry: prettier --write '**/*.yaml' '**/*.yml'
files: \.ya?ml$
language: node
additional_dependencies: ['[email protected]']
- repo: https://github.com/pycqa/isort
rev: 7.0.0
hooks:
Expand Down