Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,10 @@ AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: All
AllowShortLoopsOnASingleLine: false
AllowShortNamespacesOnASingleLine: false
AllowShortRecordOnASingleLine: Always
AlwaysBreakBeforeMultilineStrings: false
AttributeMacros: []
BinPackArguments: true
BinPackLongBracedList: false
BinPackParameters: true
BitFieldColonSpacing: Both
BreakAdjacentStringLiterals: false
BreakAfterAttributes: Leave
Expand All @@ -58,10 +57,12 @@ BreakBeforeCloseBracketLoop: false
BreakBeforeCloseBracketSwitch: false
BreakBeforeConceptDeclarations: Always
BreakBeforeInlineASMColon: OnlyMultiline
BreakBeforeReturnType: None
BreakBeforeTemplateCloser: true
BreakBeforeTernaryOperators: true
BreakBinaryOperations: RespectPrecedence
BreakConstructorInitializers: BeforeComma
BreakFunctionDeclarationParameters: false
BreakFunctionDefinitionParameters: false
BreakInheritanceList: BeforeComma
BreakStringLiterals: false
Expand Down Expand Up @@ -131,7 +132,11 @@ NumericLiteralCase:
Suffix: Upper
OneLineFormatOffRegex: '^// NOLINT'
PPIndentWidth: 2
PackArguments:
BinPack: BinPack
PackConstructorInitializers: Never
PackParameters:
BinPack: BinPack
PenaltyBreakAssignment: 2
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakBeforeMemberAccess: 0
Expand Down Expand Up @@ -185,6 +190,7 @@ SpaceBeforeAssignmentOperators: true
SpaceBeforeCaseColon: false
SpaceBeforeCpp11BracedList: false
SpaceBeforeCtorInitializerColon: true
SpaceBeforeEnumUnderlyingTypeColon: true
SpaceBeforeInheritanceColon: true
SpaceBeforeParens: ControlStatements
SpaceBeforeRangeBasedForLoopColon: true
Expand Down
1 change: 0 additions & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ Checks:
- -fuchsia-default-arguments-declarations
- -fuchsia-overloaded-operator
- -google-readability-todo
- -hicpp-named-parameter
- -llvm-header-guard
- -llvm-prefer-static-over-anonymous-namespace
- -llvm-use-ranges
Expand Down
8 changes: 4 additions & 4 deletions .commitlintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
extends : ["@commitlint/config-conventional"],
rules : {
"header-max-length" : [1, "always", 50],
"body-max-line-length" : [1, "always", 72]
extends: ["@commitlint/config-conventional"],
rules: {
"header-max-length": [1, "always", 50],
"body-max-line-length": [1, "always", 72]
}
}
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repos:
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/BlankSpruce/gersemi-pre-commit
rev: 0.28.0
rev: 0.28.1
hooks:
- id: gersemi
- repo: https://github.com/doublify/pre-commit-clang-format
Expand Down Expand Up @@ -61,6 +61,6 @@ repos:
- id: rst-inline-touching-normal
- id: text-unicode-replacement-char
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.12.3
rev: 0.12.7
hooks:
- id: uv-lock
29 changes: 14 additions & 15 deletions .releaserc.js
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
module.exports = {
"branches" : "main",
"tagFormat" : "${version}",
"plugins" :
[
"branches": "main",
"tagFormat": "${version}",
"plugins": [
[
"@semantic-release/commit-analyzer", {
"preset" : "conventionalcommits",
"releaseRules" : [{"type" : "refactor", "release" : "patch"}]
"preset": "conventionalcommits",
"releaseRules": [{"type": "refactor", "release": "patch"}]
}
],
[
"@semantic-release/release-notes-generator", {
"preset" : "conventionalcommits",
"presetConfig" : {
"types" :
[
{"type" : "feat", "section" : "Features"},
{"type" : "fix", "section" : "Bug Fixes"},
{"type" : "refactor", "section" : "Refactoring"},
{"type" : "perf", "section" : "Performance improvements"}
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "refactor", "section": "Refactoring"},
{"type": "perf", "section": "Performance improvements"}
]
}
}
],
"@semantic-release/changelog",
[
"@semantic-release/git", {
"message" : "chore(release): ${lastRelease.version} → ${nextRelease.version} [skip ci]"
"message":
"chore(release): ${lastRelease.version} → ${nextRelease.version} [skip ci]"
}
]
]
Expand Down
Loading
Loading