Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
p-chan committed Apr 18, 2021
0 parents commit 75d711a
Show file tree
Hide file tree
Showing 4 changed files with 4,232 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# dependencies
node_modules

# logs
*.log
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# @stardust-configs/renovate-config

> Shareable Renovate config
## Usage

Edit `renovate.json`.

```json
{
"extends": ["@stardust-configs"]
}
```
48 changes: 48 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "renovate-config",
"version": "0.1.0",
"description": "Shareable Renovate config",
"keywords": [
"renovate"
],
"homepage": "https://github.com/stardust-configs/renovate-config#readme",
"bugs": "https://github.com/stardust-configs/renovate-config/issues",
"license": "MIT",
"author": "P-Chan",
"repository": {
"type": "git",
"url": "https://github.com/stardust-configs/renovate-config.git"
},
"scripts": {
"test": "renovate-config-validator"
},
"devDependencies": {
"renovate": "^24.116.2"
},
"renovate-config": {
"default": {
"extends": [
"@stardust-configs:base"
]
},
"base": {
"extends": [
":separateMajorReleases",
":combinePatchMinorReleases",
":ignoreUnstable",
":prImmediately",
":semanticPrefixFixDepsChoreOthers",
":updateNotScheduled",
":automergeDisabled",
":ignoreModulesAndTests",
":autodetectPinVersions",
":prHourlyLimit2",
":prConcurrentLimit20",
"group:monorepos",
"group:recommended",
"helpers:disableTypesNodeMajor",
"workarounds:all"
]
}
}
}
Loading

0 comments on commit 75d711a

Please sign in to comment.