Skip to content

Commit c3be8c3

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.761.9
1 parent 5f5e6a5 commit c3be8c3

917 files changed

Lines changed: 30412 additions & 202897 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
**/.speakeasy/temp/
2+
**/.speakeasy/logs/
3+
.speakeasy/reports
4+
bin/
5+
sorbet/rbi
6+
.env
7+
.env.local
18
.DS_Store
29
*.gem
310
Gemfile.lock

.rubocop-strict.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
inherit_from: .rubocop.yml
2+
3+
# Re-enable Style/StringLiterals for strict linting (e.g. internal CI).
4+
# The base .rubocop.yml disables this rule so customers with single-quote
5+
# conventions aren't broken. Use RUBOCOP_OPTS="--config .rubocop-strict.yml"
6+
# to opt in to enforcement.
7+
Style/StringLiterals:
8+
Enabled: true
9+
EnforcedStyle: double_quotes
10+
Exclude:
11+
- Gemfile
12+
- "*.gemspec"
13+
- lib/crystalline.rb
14+
- lib/crystalline/**/*
15+
- lib/**/sdk_hooks/**/*
16+
- sorbet/**/*

.rubocop.yml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
plugins:
2+
- rubocop-minitest
3+
14
AllCops:
25
Exclude:
36
- Rakefile
4-
TargetRubyVersion: "3.0"
7+
- bin/**/*
8+
TargetRubyVersion: "3.2"
59
Metrics:
610
Enabled: false
711
Style/IfInsideElse:
@@ -63,6 +67,8 @@ Style/TrailingCommaInHashLiteral:
6367
Enabled: false
6468
Style/TrailingCommaInArrayLiteral:
6569
Enabled: false
70+
Layout/EmptyLinesAroundBlockBody:
71+
Enabled: false
6672
Layout/EmptyLinesAroundClassBody:
6773
Enabled: false
6874
Style/WordArray:
@@ -75,3 +81,25 @@ Lint/LiteralAsCondition:
7581
Enabled: false
7682
Naming/VariableNumber:
7783
Enabled: false
84+
# rubyfmt enforces double quotes on generated code, but customer-authored files
85+
# (sdk_hooks, tests, etc.) may use single quotes, so we don't enforce this rule.
86+
Style/StringLiterals:
87+
Enabled: false
88+
Style/BlockDelimiters:
89+
Enabled: false
90+
Style/MultilineTernaryOperator:
91+
Enabled: false
92+
Layout/EmptyLinesAroundExceptionHandlingKeywords:
93+
Enabled: false
94+
Style/EmptyMethod:
95+
Enabled: false
96+
Layout/MultilineOperationIndentation:
97+
Enabled: false
98+
Layout/MultilineMethodCallIndentation:
99+
Enabled: false
100+
Layout/SpaceInLambdaLiteral:
101+
Enabled: false
102+
Layout/FirstArgumentIndentation:
103+
Enabled: false
104+
Layout/FirstArrayElementIndentation:
105+
EnforcedStyle: consistent

0 commit comments

Comments
 (0)