diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..d9de7bc --- /dev/null +++ b/.prettierrc @@ -0,0 +1,4 @@ +{ + "quoteProps": "preserve", + "trailingComma": "none" +} diff --git a/nixos/home/jahanson/workstation.nix b/nixos/home/jahanson/workstation.nix index 029ff8e..0e833e8 100644 --- a/nixos/home/jahanson/workstation.nix +++ b/nixos/home/jahanson/workstation.nix @@ -31,7 +31,7 @@ with config; parsec-bin solaar # open source manager for logitech unifying receivers unstable.bruno - unstable.flameshot + (unstable.flameshot.override { enableWlrSupport = true; }) unstable.fractal unstable.httpie unstable.jetbrains.datagrip diff --git a/renovate.json5 b/renovate.json5 index 192a590..e266f75 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,8 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ], + "extends": ["config:base"], "nix": { "enabled": true }, @@ -16,16 +14,14 @@ { "customType": "regex", "description": "Process various dependencies in nix files", - "fileMatch": [ - "\\.nix$" - ], + "fileMatch": ["\\.nix$"], "matchStrings": [ // Newline "(?m:^[ \\t]*?# ?renovate: depName=(?\\S+)( datasource=(?\\S+))?( versioning=(?\\S+))?( extractVersion=(?\\S+))?\\n[ \\t ]*?\\S+ = \"?(?[^\" ]+?)\";?$)" ], "datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}github-releases{{/if}}", "versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}", - "extractVersionTemplate": "{{#if extractVersion}}{{{extractVersion}}}{{else}}^(?.*)${{/if}}", - }, - ], + "extractVersionTemplate": "{{#if extractVersion}}{{{extractVersion}}}{{else}}^(?.*)${{/if}}" + } + ] }