Compare commits

...

4 Commits

8 changed files with 43 additions and 20 deletions

View File

@ -8,7 +8,7 @@ charset = utf-8
indent_style = tab
indent_size = tab
[*.{yaml,yml,cff}]
[*.{yaml,yml,cff,json}]
indent_style = space
indent_size = 2

2
.gitignore vendored
View File

@ -7,6 +7,8 @@
!.gitignore
!.pre-commit-config.yaml
!.prettierrc
!.prettierignore
!.nvmrc
# Other ignores
node_modules

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
lts/*

View File

@ -5,26 +5,26 @@
ci:
# https://github.com/pre-commit-ci/issues/issues/83
autoupdate_schedule: quarterly
skip: [prettier]
default_language_version:
python: pypy3
skip: [pnpm-install-dev, prettier]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-yaml
- id: check-shebang-scripts-are-executable
- id: destroyed-symlinks
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace
args: ["--markdown-linebreak-ext", "md,markdown"]
exclude_types: [svg, tsv]
- id: check-yaml
- id: check-added-large-files
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: destroyed-symlinks
- id: detect-private-key
- id: fix-byte-order-marker
- id: mixed-line-ending
args: [--fix=auto]
- id: pretty-format-json
args: [--autofix, --no-ensure-ascii]
- repo: https://github.com/pre-commit-ci/pre-commit-ci-config
rev: v1.6.1
@ -32,16 +32,23 @@ repos:
- id: check-pre-commit-ci-config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.5
rev: 0.28.6
hooks:
- id: check-dependabot
- id: check-github-workflows
- repo: local
hooks:
- id: pnpm-install-dev
name: Install pnpm dev dependencies
entry: corepack pnpm install -D
language: system
always_run: true
#verbose: true
pass_filenames: false
- id: prettier
name: prettier
entry: pnpm exec prettier --cache --ignore-unknown --write
entry: corepack pnpm exec prettier --cache --ignore-unknown --write
language: system
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python

1
.prettierignore Normal file
View File

@ -0,0 +1 @@
*.json

View File

@ -1,6 +1,7 @@
{
"devDependencies": {
"prettier": "3.3.2",
"prettier-plugin-sh": "0.14.0"
}
"devDependencies": {
"prettier": "3.3.2",
"prettier-plugin-sh": "0.14.0"
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}

5
renovate-config.json Normal file
View File

@ -0,0 +1,5 @@
{
"extends": [
"github>Mikaela/shell-things:.renovate-shared"
]
}

6
renovate.json Normal file
View File

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>Mikaela/.github:renovate-config"
]
}