Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mheob/config
A summary of my configurations.
https://github.com/mheob/config
configuration eslint-config hacktoberfest prettier-config
Last synced: 1 day ago
JSON representation
A summary of my configurations.
- Host: GitHub
- URL: https://github.com/mheob/config
- Owner: mheob
- License: mit
- Created: 2022-07-24T07:39:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-25T01:26:56.000Z (21 days ago)
- Last Synced: 2024-12-25T02:28:23.736Z (21 days ago)
- Topics: configuration, eslint-config, hacktoberfest, prettier-config
- Language: TypeScript
- Homepage: https://www.its-boehm.de
- Size: 1.54 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Configuration for my projects
Just a summary of my configurations to import easily.
See the readmes in each package for further information.
## Tipps
### Kodiak
From the [official Kodiak docs](https://kodiakhq.com/docs/config-reference):
> Kodiak's configuration file is a TOML file and should be placed at `.kodiak.toml` (repository root or `.github/.kodiak.toml`).
If Kodiak cannot find configuration in the repository, Kodiak will use the global configuration in look in the [`.github`](https://github.com/mheob/.github) repository if the project is inside of the `@mheob` scope.
### Renovate
Inside of the `@mheob` scope I can use a shared Renovate configuration.\
For further information see the [Renovate Docs](https://docs.renovatebot.com/config-presets).Please overwrite the schedule in the used Renovate config stored at `.github/renovate.json`.
```json
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>mheob/.github:renovate-config"],
"schedule": ["before 4am on Wednesday"]
}
```