Skip to content

Commit d606c65

Browse files
committed
Fix EDITORCONFIG violations: Add final newlines to all source files
- Add missing final newlines to 22+ files (.md, .py, .yaml) - This resolves EDITORCONFIG linting errors in Super-Linter CI - Files now conform to insert_final_newline = true rule
1 parent b6fb47b commit d606c65

File tree

22 files changed

+22
-22
lines changed

22 files changed

+22
-22
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,4 @@ Thank you in advance for your contribution!
155155
- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
156156
- [How to get faster PR reviews](https://github.com/kubernetes/community/blob/master/contributors/guide/pull-requests.md#best-practices-for-faster-reviews) by Kubernetes (but skip step 0)
157157
- [Using Pull Requests](https://help.github.com/articles/about-pull-requests/)
158-
- [GitHub Help](https://help.github.com)
158+
- [GitHub Help](https://help.github.com)

config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ This folder contains the various configurations for unstructuredDataHandler espe
1414

1515
- `model_config.yaml`: Configure API keys and model parameters
1616
- `prompt_templates.yaml`: Define reusable prompt templates
17-
- `logging_config.yaml`: Configure logging behavior
17+
- `logging_config.yaml`: Configure logging behavior

data/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ This folder contains the various data files for unstructuredDataHandler, includi
99
├── prompts/ # Prompt storage
1010
├── outputs/ # Output storage
1111
└── embeddings/ # Embedding storage
12-
```
12+
```

doc/COOKED_READ_DATA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ All of the following ✅ marks must be fulfilled during manual testing:
77
* usecase 2 ✅
88
* usecase 3 ✅
99
* usecase 4 ✅
10-
* usecase 5 ✅
10+
* usecase 5 ✅

doc/CodeDocs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@
6060

6161
# Type hints configuration
6262
typehints_fully_qualified = False
63-
always_document_param_types = True
63+
always_document_param_types = True

doc/STYLE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
## Philosophy
44
1. If it's inserting something into the existing classes/functions, try to follow the existing style as closely as possible.
55
1. If it's brand new code or refactoring a complete class or area of the code, please follow as Modern C++ of a style as you can and reference the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines) as much as you possibly can.
6-
1. The use of NTSTATUS as a result code is discouraged, HRESULT or exceptions are preferred. Functions should not return a status code if they would always return a successful status code. Any function that returns a status code should be marked `noexcept` and have the `nodiscard` attribute.
6+
1. The use of NTSTATUS as a result code is discouraged, HRESULT or exceptions are preferred. Functions should not return a status code if they would always return a successful status code. Any function that returns a status code should be marked `noexcept` and have the `nodiscard` attribute.

doc/fuzzing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ Our pipeline has been set up to create Azure DevOps work items.
5757
- [Notifications](https://github.com/microsoft/onefuzz/blob/main/docs/notifications.md)
5858
- [MS Teams](https://github.com/microsoft/onefuzz/blob/main/docs/notifications/teams.md)
5959
- [Azure DevOps](https://github.com/microsoft/onefuzz/blob/main/docs/notifications/ado.md)
60-
- [OSG Wiki - OneFuzz](https://www.osgwiki.com/wiki/Fuzzing_Service_-_Azure_Edge_and_Platform)
60+
- [OSG Wiki - OneFuzz](https://www.osgwiki.com/wiki/Fuzzing_Service_-_Azure_Edge_and_Platform)

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ This folder contains the various examples for unstructuredDataHandler.
88
├── basic_completion.py
99
├── chat_session.py
1010
└── chain_prompts.py
11-
```
11+
```

examples/parser_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,4 @@ def main():
182182

183183

184184
if __name__ == "__main__":
185-
main()
185+
main()

notebooks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ This folder contains the various notebooks for unstructuredDataHandler that used
1111
├── response_analysis.ipynb
1212
└── model_experimentation.ipynb
1313
14-
```
14+
```

0 commit comments

Comments
 (0)