Skip to content

Commit 6d35ad5

Browse files
committed
Format files using lint-checker
1 parent e261879 commit 6d35ad5

File tree

6 files changed

+14
-18
lines changed

6 files changed

+14
-18
lines changed

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Before opening a Pull Request, please read the following items:
2+
23
1. Make sure you have read the [CONTRIBUTING](../CONTRIBUTING.md) guidelines
34
2. Make sure no other PR is implementing the same change
45
3. Make sure the Continuous Integration workflows (Github Actions) are all passing
@@ -7,4 +8,5 @@ Before opening a Pull Request, please read the following items:
78
<!-- Remove the above section before opening the pull request -->
89

910
# Description
11+
1012
<!-- Add a brief description of the changes related to this Pull Request -->

CODE_OF_CONDUCT.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Code of Conduct
32

43
## Our Pledge
@@ -18,23 +17,23 @@ diverse, inclusive, and healthy community.
1817
Examples of behavior that contributes to a positive environment for our
1918
community include:
2019

21-
* Demonstrating empathy and kindness toward other people
22-
* Being respectful of differing opinions, viewpoints, and experiences
23-
* Giving and gracefully accepting constructive feedback
24-
* Accepting responsibility and apologizing to those affected by our mistakes,
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
2524
and learning from the experience
26-
* Focusing on what is best not just for us as individuals, but for the overall
25+
- Focusing on what is best not just for us as individuals, but for the overall
2726
community
2827

2928
Examples of unacceptable behavior include:
3029

31-
* The use of sexualized language or imagery, and sexual attention or advances of
30+
- The use of sexualized language or imagery, and sexual attention or advances of
3231
any kind
33-
* Trolling, insulting or derogatory comments, and personal or political attacks
34-
* Public or private harassment
35-
* Publishing others' private information, such as a physical or email address,
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email address,
3635
without their explicit permission
37-
* Other conduct which could reasonably be considered inappropriate in a
36+
- Other conduct which could reasonably be considered inappropriate in a
3837
professional setting
3938

4039
## Enforcement Responsibilities
@@ -74,6 +73,3 @@ version 2.1, available at
7473

7574
[homepage]: https://www.contributor-covenant.org
7675
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
77-
[Mozilla CoC]: https://github.com/mozilla/diversity
78-
[FAQ]: https://www.contributor-covenant.org/faq
79-
[translations]: https://www.contributor-covenant.org/translations

src/c/GraphSearch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ int buscaEmLargura(VERTICE inicio, VERTICE destino) {
109109
int tamFila = 1; // Variável que controla o tamanho da fila
110110

111111
VERTICE
112-
FILA[MAX_VERTICES]; // Fila que irá guardar os vértices a serem comparados
112+
FILA[MAX_VERTICES]; // Fila que irá guardar os vértices a serem comparados
113113
for (int i = 0; i < MAX_VERTICES;
114114
i++) { // Como a lista não é dinâmica, ela precisa ser 'limpa' primeiro
115115
FILA[i] = NULL;

src/python/dynamic_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def show(self) -> None:
4141
def main() -> None:
4242
dynamic_stack = DynamicStack()
4343

44-
print(f"Push(1,2,4):")
44+
print("Push(1,2,4):")
4545
dynamic_stack.push(1)
4646
dynamic_stack.push(2)
4747
dynamic_stack.push(4)

src/python/fibonacci_iterative.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
execution of algorithms in seconds
66
"""
77

8-
import functools
98
import time
109

1110

src/python/lz77.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import io
21
import sys
32

43

0 commit comments

Comments
 (0)