diff --git a/.github/workflows/pr-linting.yml b/.github/workflows/pr-linting.yml index 54f4261..cd3bb74 100644 --- a/.github/workflows/pr-linting.yml +++ b/.github/workflows/pr-linting.yml @@ -12,7 +12,7 @@ on: jobs: check-labels: name: Check labels - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: docker://agilepathway/pull-request-label-checker:latest # cspell:ignore agilepathway with: @@ -23,7 +23,7 @@ jobs: check-title: name: Check title - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - run: npm install @compwa/commitlint-config diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index d54187d..d64f197 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -9,7 +9,7 @@ on: jobs: update_release_draft: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: release-drafter/release-drafter@v5 env: diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index dccfe0d..0000000 --- a/.gitpod.yml +++ /dev/null @@ -1,30 +0,0 @@ -tasks: - - init: pip install -e .[dev] - -github: - prebuilds: - master: true - branches: false - pullRequests: true - pullRequestsFromForks: true - addComment: false - addBadge: false - addLabel: false - -vscode: - extensions: - - eamodio.gitlens - - editorconfig.editorconfig - - esbenp.prettier-vscode - - github.vscode-github-actions - - github.vscode-pull-request-github - - ms-python.python - - ms-python.vscode-pylance - - ms-vscode.live-server - - ms-vsliveshare.vsliveshare - - oijaz.unicode-latex - - redhat.vscode-yaml - - stkb.rewrap - - tamasfe.even-better-toml - - tyriar.sort-lines - - yzhang.markdown-all-in-one diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e1660af..bdf161d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -27,7 +27,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/ComPWA/repo-maintenance - rev: 0.0.203 + rev: 0.1.0rc0 hooks: - id: check-dev-files args: diff --git a/.taplo.toml b/.taplo.toml index 424b746..0d0d446 100644 --- a/.taplo.toml +++ b/.taplo.toml @@ -3,6 +3,7 @@ exclude = [ "**/Manifest.toml", "**/Project.toml", "labels*.toml", + "labels/*.toml", ] [formatting] diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 7c0eee2..973368a 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -4,6 +4,7 @@ "eamodio.gitlens", "editorconfig.editorconfig", "esbenp.prettier-vscode", + "executablebookproject.myst-highlight", "garaioag.garaio-vscode-unwanted-recommendations", "github.vscode-github-actions", "github.vscode-pull-request-github", diff --git a/.vscode/settings.json b/.vscode/settings.json index 587fe46..11f34ff 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,8 @@ { + "[git-commit]": { + "editor.rulers": [72], + "rewrap.wrappingColumn": 72 + }, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, @@ -8,7 +12,6 @@ "[markdown]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.rulers": [], - "editor.wordWrap": "bounded", "editor.wordWrapColumn": 80, "editor.wrappingIndent": "same", "editor.wrappingStrategy": "advanced" @@ -17,14 +20,14 @@ "editor.codeActionsOnSave": { "source.organizeImports": true }, - "editor.defaultFormatter": "ms-python.black-formatter" + "editor.defaultFormatter": "ms-python.black-formatter", + "editor.rulers": [88] }, "[yaml]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "black-formatter.importStrategy": "fromEnvironment", "editor.formatOnSave": true, - "editor.rulers": [88], "files.associations": { ".cspell/*.txt": "plaintext" },