Skip to content

Commit 43f6f8d

Browse files
committed
fix: correct remaining shellcheck, stylelint and cfn-lint errors
1 parent ac7904d commit 43f6f8d

File tree

5 files changed

+46
-46
lines changed

5 files changed

+46
-46
lines changed

examples/green-house-migration/docs/assets/css/style.css

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,48 @@ body {
1515
background-color: #fff;
1616
}
1717

18+
/* Typography */
19+
h1,
20+
h2,
21+
h3,
22+
h4,
23+
h5,
24+
h6 {
25+
margin-top: 2rem;
26+
margin-bottom: 1rem;
27+
color: #24292e;
28+
font-weight: 600;
29+
}
30+
31+
h1 {
32+
font-size: 2rem;
33+
border-bottom: 2px solid #e1e4e8;
34+
padding-bottom: 0.5rem;
35+
}
36+
37+
h2 {
38+
font-size: 1.5rem;
39+
border-bottom: 1px solid #e1e4e8;
40+
padding-bottom: 0.25rem;
41+
}
42+
43+
h3 {
44+
font-size: 1.25rem;
45+
}
46+
47+
li {
48+
margin-bottom: 0.25rem;
49+
}
50+
51+
a {
52+
color: #0366d6;
53+
text-decoration: none;
54+
}
55+
56+
a:hover {
57+
text-decoration: underline;
58+
}
59+
1860
/* Header */
1961
.site-header {
2062
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
@@ -99,23 +141,6 @@ body {
99141
font-size: 1.1rem;
100142
}
101143

102-
h3 {
103-
font-size: 1.25rem;
104-
}
105-
106-
li {
107-
margin-bottom: 0.25rem;
108-
}
109-
110-
a {
111-
color: #0366d6;
112-
text-decoration: none;
113-
}
114-
115-
a:hover {
116-
text-decoration: underline;
117-
}
118-
119144
.sidebar-menu {
120145
list-style: none;
121146
margin-bottom: 2rem;
@@ -159,31 +184,6 @@ a:hover {
159184
color: #24292e;
160185
}
161186

162-
/* Typography */
163-
h1,
164-
h2,
165-
h3,
166-
h4,
167-
h5,
168-
h6 {
169-
margin-top: 2rem;
170-
margin-bottom: 1rem;
171-
color: #24292e;
172-
font-weight: 600;
173-
}
174-
175-
h1 {
176-
font-size: 2rem;
177-
border-bottom: 2px solid #e1e4e8;
178-
padding-bottom: 0.5rem;
179-
}
180-
181-
h2 {
182-
font-size: 1.5rem;
183-
border-bottom: 1px solid #e1e4e8;
184-
padding-bottom: 0.25rem;
185-
}
186-
187187
p {
188188
margin-bottom: 1rem;
189189
}

examples/langgraph-sls-fastapi-rag/scripts/easy-options/easyoptions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ parse_options() {
149149
# Set the corresponding variable for known options
150150
for known_option in "${options[@]}" "${short_option_vars[@]}"; do
151151
known_option_var=${known_option#*=}
152-
known_option_name=${known_option%=$known_option_var}
152+
known_option_name=${known_option%="$known_option_var"}
153153

154154
# Short option
155155
if [[ "$option" = "$known_option_name" ]]; then

examples/langgraph-sls-fastapi-rag/sls/resource/S3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
S3Bucket:
44
Type: AWS::S3::Bucket
55
Properties:
6-
BucketName: ${self:service}${sls:stage}programs
6+
BucketName: langgraphprograms
77
CorsConfiguration:
88
CorsRules:
99
- AllowedHeaders:

examples/langgraph-sls-fastapi-rag/sls/resource/bedrock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
BedrockIamPolicy:
33
Type: AWS::IAM::Policy
44
Properties:
5-
PolicyName: ${self:service}${sls:stage}bedrockinvokemodelpolicy
5+
PolicyName: bedrockinvokemodelpolicy
66
PolicyDocument:
77
Version: "2012-10-17"
88
Statement:

examples/langgraph-sls-fastapi-rag/sls/resource/dynamodb-checkpointer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
DynamoDBAccessPolicy:
33
Type: AWS::IAM::Policy
44
Properties:
5-
PolicyName: ${self:service}${sls:stage}dynamodbaccess
5+
PolicyName: dynamodbaccess
66
PolicyDocument:
77
Version: "2012-10-17"
88
Statement:

0 commit comments

Comments
 (0)