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
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ max_line_length = 88
# Have a bit shorter line length for text docs
[*.{txt,md,qmd}]
max_line_length = 72
indent_size = 4

# Python always uses 4 spaces for tabs
[*.py]
Expand Down
5 changes: 3 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# All members on Developers team get added to review PRs
* @seedcase-project/developers
# Which team or person to inform for PRs that modify these files.
# `*` means all files in the repository.
* @seedcase-project/platform-templates @seedcase-project/admin
1 change: 0 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ updates:
interval: monthly
commit-message:
prefix: ci
include: scope
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ _book
public
site

# Cache folders
*_cache/

# Misc files
*.log
11 changes: 4 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
ci:
autofix_commit_msg: "chore(pre-commit): :pencil2: automatic fixes"
autoupdate_commit_msg: "ci(pre-commit): :construction_worker: update pre-commit CI version"
autofix_commit_msg: "chore: ✏️ automatic pre-commit hook fixes"
autoupdate_commit_msg: "ci: 👷 update pre-commit CI version"

repos:
- repo: https://github.com/gitleaks/gitleaks
Expand All @@ -15,14 +15,11 @@ repos:
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: mixed-line-ending
args: [--fix=lf]
- id: check-merge-conflict
args: [--assume-in-merge]

- repo: https://github.com/commitizen-tools/commitizen
rev: v4.16.2
hooks:
- id: commitizen

# Use the mirror since the main `typos` repo has tags for different
# sub-packages, which confuses pre-commit when it tries to find the latest
# version
Expand Down
12 changes: 6 additions & 6 deletions .rumdl.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
line_length = 72
flavor = "quarto"
exclude = [
# Common directories to exclude
".github",
# This is auto-generated from the qmd version
"**/README.md",
# This has it's own structure
"**/LICENSE.md"
# Common directories to exclude
".github",
# This is auto-generated from the qmd version
"**/README.md",
# This has it's own structure
"**/LICENSE.md",
]

# List style: `-`
Expand Down
4 changes: 2 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"recommendations": [
"eamodio.gitlens",
"github.vscode-github-actions",
"GitHub.vscode-github-actions",
"redhat.vscode-yaml",
"donjayamanne.githistory",
"felipecaputo.git-project-manager",
Expand All @@ -13,8 +13,8 @@
"pshaddel.conventional-branch",
"tekumara.typos-vscode",
"EditorConfig.EditorConfig",
"samuelcolvin.jinjahtml",
"rvben.rumdl"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
8 changes: 3 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{
"files.autoSave": "onFocusChange",
"editor.wordWrap": "off",
"editor.formatOnSave": true,
"git.autofetch": false,
"editor.tabCompletion": "on",
"editor.snippetSuggestions": "inline",
"conventional-branch.type": [
"build",
Expand All @@ -29,5 +25,7 @@
"*.toml.jinja": "jinja-toml",
"*.qmd.jinja": "jinja-md"
},
"files.insertFinalNewline": true
"files.insertFinalNewline": true,
"conventionalCommits.emojiFormat": "emoji",
"conventionalCommits.promptScopes": false
}
Loading