Skip to content

Commit

Permalink
chore: enable objectWrap in prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Feb 10, 2025
1 parent 8f2bbac commit 3e8f027
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
23 changes: 5 additions & 18 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"configMigration": true,
"dependencyDashboard": false,
"docker-compose": {
"enabled": true
},
"docker-compose": { "enabled": true },
"extends": ["config:recommended"],
"lockFileMaintenance": {
"enabled": true,
"schedule": ["at any time"]
},
"lockFileMaintenance": { "enabled": true, "schedule": ["at any time"] },
"packageRules": [
{
"matchUpdateTypes": ["minor"],
Expand All @@ -25,14 +20,8 @@
],
"automerge": true
},
{
"matchDepTypes": ["devDependencies"],
"automerge": true
},
{
"matchManagers": ["pre-commit"],
"automerge": true
},
{ "matchDepTypes": ["devDependencies"], "automerge": true },
{ "matchManagers": ["pre-commit"], "automerge": true },
{
"matchCategories": ["docker"],
"matchDepNames": ["docker.io/python"],
Expand All @@ -42,9 +31,7 @@
],
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"pre-commit": {
"enabled": true
},
"pre-commit": { "enabled": true },
"rollbackPrs": true,
"semanticCommits": "enabled",
"schedule": ["at any time"]
Expand Down
4 changes: 4 additions & 0 deletions prettier.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* @type {import('prettier').Config}
*/
export default { objectWrap: "collapse" };

0 comments on commit 3e8f027

Please sign in to comment.