Skip to content

Commit

Permalink
Fix missing end of file chars (#1106)
Browse files Browse the repository at this point in the history
Signed-off-by: Abolfazl Shahbazi <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
ashahba and pre-commit-ci[bot] authored Nov 13, 2024
1 parent 393367e commit b5f95f7
Show file tree
Hide file tree
Showing 104 changed files with 104 additions and 104 deletions.
2 changes: 1 addition & 1 deletion .github/code_spell_ignore.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ModelIn
modelin
modelin
2 changes: 1 addition & 1 deletion .github/license_template.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Copyright (C) 2024 Intel Corporation
SPDX-License-Identifier: Apache-2.0
SPDX-License-Identifier: Apache-2.0
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
**/playwright/.cache/
**/test-results/

__pycache__/
__pycache__/
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
**/kubernetes/
**/kubernetes/
2 changes: 1 addition & 1 deletion AudioQnA/ui/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ RUN npm run build
EXPOSE 5173

# Run the front-end application in preview mode
CMD ["npm", "run", "preview", "--", "--port", "5173", "--host", "0.0.0.0"]
CMD ["npm", "run", "preview", "--", "--port", "5173", "--host", "0.0.0.0"]
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/app.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ a.btn {

.w-12\/12 {
width: 100%
}
}
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/4.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/5.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/upload.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/voice.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/voiceOff.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AudioQnA/ui/svelte/src/lib/assets/icons/svg/voiceOn.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AvatarChatbot/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
docker_compose/intel/cpu/xeon/data
docker_compose/intel/hpu/gaudi/data
inputs/
outputs/
outputs/
2 changes: 1 addition & 1 deletion ChatQnA/ui/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ RUN npm run build
EXPOSE 5173

# Run the front-end application in preview mode
CMD ["npm", "run", "preview", "--", "--port", "5173", "--host", "0.0.0.0"]
CMD ["npm", "run", "preview", "--", "--port", "5173", "--host", "0.0.0.0"]
2 changes: 1 addition & 1 deletion ChatQnA/ui/docker/Dockerfile.react
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ COPY --from=vite-app /usr/app/react/dist /usr/share/nginx/html
COPY ./react/env.sh /docker-entrypoint.d/env.sh

COPY ./react/nginx.conf /etc/nginx/conf.d/default.conf
RUN chmod +x /docker-entrypoint.d/env.sh
RUN chmod +x /docker-entrypoint.d/env.sh
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VITE_BACKEND_SERVICE_ENDPOINT=http://backend_address:8888/v1/chatqna
VITE_DATA_PREP_SERVICE_URL=http://backend_address:6007/v1/dataprep
VITE_DATA_PREP_SERVICE_URL=http://backend_address:6007/v1/dataprep
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/.env.production
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VITE_BACKEND_SERVICE_ENDPOINT=APP_BACKEND_SERVICE_ENDPOINT
VITE_DATA_PREP_SERVICE_URL=APP_DATA_PREP_SERVICE_URL
VITE_DATA_PREP_SERVICE_URL=APP_DATA_PREP_SERVICE_URL
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ server {
expires 1d;
}
}
}
}
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/public/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion ChatQnA/ui/react/src/assets/react.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ export default function DataSource({ opened, onClose }: Props) {
</Container>
</Drawer>
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ const UserInfoModal = () => {
)
}

export default UserInfoModal
export default UserInfoModal
2 changes: 1 addition & 1 deletion ChatQnA/ui/svelte/src/app.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ a.btn {

.w-12\/12 {
width: 100%
}
}
2 changes: 1 addition & 1 deletion ChatQnA/ui/svelte/src/lib/assets/voice/svg/paste.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit b5f95f7

Please sign in to comment.