Skip to content

Commit

Permalink
Format files using lint-checker
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvins committed Oct 23, 2024
1 parent e261879 commit 6d35ad5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Before opening a Pull Request, please read the following items:

1. Make sure you have read the [CONTRIBUTING](../CONTRIBUTING.md) guidelines
2. Make sure no other PR is implementing the same change
3. Make sure the Continuous Integration workflows (Github Actions) are all passing
Expand All @@ -7,4 +8,5 @@ Before opening a Pull Request, please read the following items:
<!-- Remove the above section before opening the pull request -->

# Description

<!-- Add a brief description of the changes related to this Pull Request -->
24 changes: 10 additions & 14 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Code of Conduct

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

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

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or advances of
- The use of sexualized language or imagery, and sexual attention or advances of
any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email address,
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email address,
without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
- Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities
Expand Down Expand Up @@ -74,6 +73,3 @@ version 2.1, available at

[homepage]: https://www.contributor-covenant.org
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
[Mozilla CoC]: https://github.com/mozilla/diversity
[FAQ]: https://www.contributor-covenant.org/faq
[translations]: https://www.contributor-covenant.org/translations
2 changes: 1 addition & 1 deletion src/c/GraphSearch.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ int buscaEmLargura(VERTICE inicio, VERTICE destino) {
int tamFila = 1; // Variável que controla o tamanho da fila

VERTICE
FILA[MAX_VERTICES]; // Fila que irá guardar os vértices a serem comparados
FILA[MAX_VERTICES]; // Fila que irá guardar os vértices a serem comparados
for (int i = 0; i < MAX_VERTICES;
i++) { // Como a lista não é dinâmica, ela precisa ser 'limpa' primeiro
FILA[i] = NULL;
Expand Down
2 changes: 1 addition & 1 deletion src/python/dynamic_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def show(self) -> None:
def main() -> None:
dynamic_stack = DynamicStack()

print(f"Push(1,2,4):")
print("Push(1,2,4):")
dynamic_stack.push(1)
dynamic_stack.push(2)
dynamic_stack.push(4)
Expand Down
1 change: 0 additions & 1 deletion src/python/fibonacci_iterative.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
execution of algorithms in seconds
"""

import functools
import time


Expand Down
1 change: 0 additions & 1 deletion src/python/lz77.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import io
import sys


Expand Down

0 comments on commit 6d35ad5

Please sign in to comment.