Skip to content

Commit ff181e9

Browse files
yuluo-yxrootfs
andauthored
feat: standardize editor configs for cross-platform development (#456)
* feat: standardize editor configs for cross-platform development Signed-off-by: yuluo-yx <[email protected]> * fix Signed-off-by: yuluo-yx <[email protected]> * fix: add newline Signed-off-by: yuluo-yx <[email protected]> --------- Signed-off-by: yuluo-yx <[email protected]> Co-authored-by: Huamin Chen <[email protected]>
1 parent ea8ebac commit ff181e9

37 files changed

+53
-35
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
insert_final_newline = true
9+
indent_style = space
10+
indent_size = 2
11+
max_line_length = 80
12+
trim_trailing_whitespace = true
13+
14+
[Makefile]
15+
indent_style = tab

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
* text eol=lf

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ dashboard/backend/dashboard-backend
142142
dashboard/backend/dashboard-backend.exe
143143

144144
# Keep old HTML backup for reference
145-
dashboard/frontend/index.html.old
145+
dashboard/frontend/index.html.old

dashboard/OWNER

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Dashboard directory Owners
22
@JaredforReal
3-
@Xunzhuo
3+
@Xunzhuo

deploy/openshift/Dockerfile.llm-katan

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
4242
CMD curl -f http://localhost:8000/health || exit 1
4343

4444
# Default command - this will be overridden by deployment args
45-
CMD ["llm-katan", "--help"]
45+
CMD ["llm-katan", "--help"]

deploy/openshift/cleanup-openshift.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,4 +491,4 @@ main() {
491491
}
492492

493493
# Run main function with all arguments
494-
main "$@"
494+
main "$@"

deploy/openshift/config-openshift.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,4 @@ observability:
205205
resource:
206206
service_name: "vllm-semantic-router"
207207
service_version: "v0.1.0"
208-
deployment_environment: "development"
208+
deployment_environment: "development"

deploy/openshift/deploy-to-openshift.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,4 +985,4 @@ main() {
985985
}
986986

987987
# Run main function with all arguments
988-
main "$@"
988+
main "$@"

deploy/openshift/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,4 +348,4 @@ spec:
348348
claimName: semantic-router-models
349349
- name: cache-volume
350350
persistentVolumeClaim:
351-
claimName: semantic-router-cache
351+
claimName: semantic-router-cache

deploy/openshift/envoy-openshift.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,4 @@ admin:
149149
address:
150150
socket_address:
151151
address: "127.0.0.1"
152-
port_value: 19000
152+
port_value: 19000

0 commit comments

Comments
 (0)