mirror of
https://github.com/Mikaela/.github.git
synced 2025-08-17 18:17:23 +02:00
Compare commits
1 Commits
b3773bb286
...
7668ac1c5f
Author | SHA1 | Date | |
---|---|---|---|
![]() |
7668ac1c5f |
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -1 +1 @@
|
|||||||
* text=auto eol=lf linguist-detectable
|
* text=auto eol=lf linguist-detectable
|
||||||
|
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
@ -1,5 +1,3 @@
|
|||||||
# @format
|
|
||||||
|
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
|
2
.github/workflows/cff-validator.yml
vendored
2
.github/workflows/cff-validator.yml
vendored
@ -1,5 +1,3 @@
|
|||||||
# @format
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -6,8 +6,6 @@
|
|||||||
!.github
|
!.github
|
||||||
!.gitignore
|
!.gitignore
|
||||||
!.pre-commit-config.yaml
|
!.pre-commit-config.yaml
|
||||||
!.prettierrc
|
|
||||||
|
|
||||||
# Other ignores
|
# Other ignores
|
||||||
node_modules
|
node_modules
|
||||||
pnpm-lock.yaml
|
|
||||||
|
@ -1,18 +1,15 @@
|
|||||||
# @format
|
|
||||||
|
|
||||||
# See https://pre-commit.com for more information
|
# See https://pre-commit.com for more information
|
||||||
# See https://pre-commit.ci for more information
|
# See https://pre-commit.ci for more information
|
||||||
ci:
|
ci:
|
||||||
# https://github.com/pre-commit-ci/issues/issues/83
|
# https://github.com/pre-commit-ci/issues/issues/83
|
||||||
autoupdate_schedule: quarterly
|
autoupdate_schedule: quarterly
|
||||||
skip: [prettier]
|
|
||||||
|
|
||||||
default_language_version:
|
default_language_version:
|
||||||
python: pypy3
|
python: pypy3
|
||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.6.0
|
rev: v4.5.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
- id: check-case-conflict
|
- id: check-case-conflict
|
||||||
@ -32,17 +29,15 @@ repos:
|
|||||||
- id: check-pre-commit-ci-config
|
- id: check-pre-commit-ci-config
|
||||||
|
|
||||||
- repo: https://github.com/python-jsonschema/check-jsonschema
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
||||||
rev: 0.28.6
|
rev: 0.28.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: check-dependabot
|
- id: check-dependabot
|
||||||
- id: check-github-workflows
|
- id: check-github-workflows
|
||||||
|
|
||||||
- repo: local
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||||
|
rev: "v4.0.0-alpha.8"
|
||||||
hooks:
|
hooks:
|
||||||
- id: prettier
|
- id: prettier
|
||||||
name: prettier
|
|
||||||
entry: pnpm exec prettier --cache --ignore-unknown --write
|
|
||||||
language: system
|
|
||||||
|
|
||||||
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
||||||
rev: "2.7.3"
|
rev: "2.7.3"
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"insertPragma": true,
|
|
||||||
"proseWrap": "always",
|
|
||||||
"singleAttributePerLine": true,
|
|
||||||
"plugins": ["prettier-plugin-sh"],
|
|
||||||
"overrides": [{ "files": ".prettierrc", "options": { "parser": "json" } }]
|
|
||||||
}
|
|
@ -1,5 +1,3 @@
|
|||||||
# @format
|
|
||||||
|
|
||||||
cff-version: 1.2.0
|
cff-version: 1.2.0
|
||||||
message: "If you use this, please cite it as below."
|
message: "If you use this, please cite it as below."
|
||||||
authors:
|
authors:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# PRs touching any file will require my review
|
# PRs touching any file will require my review
|
||||||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#example-of-a-codeowners-file
|
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#example-of-a-codeowners-file
|
||||||
# NOTE: This will not affect other repositories even being in .github :(
|
# NOTE: This will not affect other repositories even being in .github :(
|
||||||
* @Mikaela
|
* @Mikaela
|
||||||
|
@ -1,3 +1 @@
|
|||||||
<!-- @format -->
|
|
||||||
|
|
||||||
Please refer to [aminda.eu/discuss#rules](https://aminda.eu/discuss.html#rules).
|
Please refer to [aminda.eu/discuss#rules](https://aminda.eu/discuss.html#rules).
|
||||||
|
@ -1,16 +1,14 @@
|
|||||||
<!-- @format -->
|
|
||||||
|
|
||||||
# Contributing
|
# Contributing
|
||||||
|
|
||||||
Contributions are welcomed assuming my repositories are the correct place for it
|
Contributions are welcomed assuming my repositories are the correct place
|
||||||
(the target is my repository or a PR I have open to another repository).
|
for it (the target is my repository or a PR I have open to another repository).
|
||||||
|
|
||||||
Issues being assigned to me doesn't matter, I use that just as a tool for
|
Issues being assigned to me doesn't matter, I use that just as a tool for
|
||||||
rediscovering them easily, http://github.com/issues?q=is:open%20assignee:Mikaela
|
rediscovering them easily, http://github.com/issues?q=is:open%20assignee:Mikaela
|
||||||
|
|
||||||
I also accept PRs to repositories that are mirrors (if that is easier for you
|
I also accept PRs to repositories that are mirrors (if that is easier for you
|
||||||
than opening at the original location) as patches are easy enough to export from
|
than opening at the original location) as patches are easy enough to export
|
||||||
GitHub or `git remote`s to use, the merge might just take a bit longer
|
from GitHub or `git remote`s to use, the merge might just take a bit longer
|
||||||
(including the time the mirror takes to update).
|
(including the time the mirror takes to update).
|
||||||
|
|
||||||
## General steps
|
## General steps
|
||||||
@ -18,10 +16,9 @@ GitHub or `git remote`s to use, the merge might just take a bit longer
|
|||||||
1. In case [editorconfig](https://editorconfig.org/) isn't
|
1. In case [editorconfig](https://editorconfig.org/) isn't
|
||||||
[natively supported by your editor of choice](https://editorconfig.org/#pre-installed),
|
[natively supported by your editor of choice](https://editorconfig.org/#pre-installed),
|
||||||
please consider [installing a plugin](https://editorconfig.org/#download).
|
please consider [installing a plugin](https://editorconfig.org/#download).
|
||||||
E.g. VS Cod{e,ium} users can `CTRL-P` and execute
|
E.g. VS Cod{e,ium} users can `CTRL-P` and execute `ext install EditorConfig.EditorConfig`.
|
||||||
`ext install EditorConfig.EditorConfig`.
|
2. If the repository in question has a `.pre-commit-config.yaml` file,
|
||||||
2. If the repository in question has a `.pre-commit-config.yaml` file, please
|
please install [`pre-commit`](https://pre-commit.com/) and run
|
||||||
install [`pre-commit`](https://pre-commit.com/) and run `pre-commit install`
|
`pre-commit install` in your local clone at least once.
|
||||||
in your local clone at least once.
|
|
||||||
|
|
||||||
- [](https://repology.org/project/python:pre-commit/versions)
|
- [](https://repology.org/project/python:pre-commit/versions)
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
# @format
|
|
||||||
|
|
||||||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
|
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
|
||||||
ko_fi: aminda
|
|
||||||
liberapay: Mikaela
|
|
||||||
# NOTE: If no protocol is specified, http:// is assumed.
|
# NOTE: If no protocol is specified, http:// is assumed.
|
||||||
custom: ["https://revolut.me/aminda"]
|
custom: ["https://liberapay.com/Mikaela", "https://revolut.me/aminda"]
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
<!-- @format -->
|
|
||||||
|
|
||||||
GitHub community health files
|
GitHub community health files
|
||||||
|
|
||||||
- https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file#creating-a-repository-for-default-files
|
- https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file#creating-a-repository-for-default-files
|
||||||
|
@ -1,3 +1 @@
|
|||||||
<!-- @format -->
|
|
||||||
|
|
||||||
Please see https://www.aminda.eu/.well-known/security.txt
|
Please see https://www.aminda.eu/.well-known/security.txt
|
||||||
|
@ -1,3 +1 @@
|
|||||||
<!-- @format -->
|
|
||||||
|
|
||||||
Please see https://www.aminda.eu/discuss.html
|
Please see https://www.aminda.eu/discuss.html
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"devDependencies": {
|
|
||||||
"prettier": "3.3.2",
|
|
||||||
"prettier-plugin-sh": "0.14.0"
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user