Skip to content

Commit 57c3cba

Browse files
author
Shelson Ferrari
committed
projeto inteiro - com pequenos ajustes a fazer
1 parent 7f84dc3 commit 57c3cba

370 files changed

Lines changed: 14199 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2

.github/CODEOWNERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Arquivo README.md
2+
/README.md @33mestre
3+
4+
# Diretório src/main/java/com/sognisport/
5+
src/main/java/com/sognisport/ @33mestre
6+
7+
# Diretório completo
8+
/ @33mestre
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG] "
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[FEATURE] "
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
name: Pull request template
3+
about: Create a pull request
4+
title: "[PR] "
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Description**
11+
12+
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
13+
14+
Fixes # (issue)
15+
16+
**Type of change**
17+
18+
Please delete options that are not relevant.
19+
20+
- Bug fix (non-breaking change which fixes an issue)
21+
- New feature (non-breaking change which adds functionality)
22+
- Breaking change (fix or feature that would cause existing functionality to not work as expected)
23+
- This change requires a documentation update
24+
25+
**How Has This Been Tested?**
26+
27+
Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration.
28+
29+
- [ ] Test A
30+
- [ ] Test B
31+
32+
**Checklist:**
33+
34+
- [ ] My code follows the style guidelines of this project
35+
- [ ] I have performed a self-review of my own code
36+
- [ ] I have commented my code, particularly in hard-to-understand areas
37+
- [ ] I have made corresponding changes to the documentation
38+
- [ ] My changes generate no new warnings
39+
- [ ] I have added tests that prove my fix is effective or that my feature works
40+
- [ ] New and existing unit tests pass locally with my changes
41+
- [ ] Any dependent changes have been merged and published in downstream modules
42+
43+
**Additional context**
44+
Add any other context or screenshots about the pull request here.

.github/labeler.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# ---------------------------------
2+
# _____ __ __ ______ _
3+
# / ___// /_ ___ / /________ ____ / ____/__ ______________ ______(_)
4+
# \__ \/ __ \/ _ \/ / ___/ __ \/ __ \ / /_ / _ \/ ___/ ___/ __ `/ ___/ /
5+
# ___/ / / / / __/ (__ ) /_/ / / / / / __/ / __/ / / / / /_/ / / / /
6+
# /____/_/ /_/\___/_/____/\____/_/ /_/ /_/ \___/_/ /_/ \__,_/_/ /_/
7+
# ---------------------------------
8+
# Currency Conversion API
9+
# GitHub Labeler Configuration File
10+
# ---------------------------------
11+
# This file is used to automate the application of labels
12+
# to pull requests and issues in the GitHub repository based on the files that
13+
# have been modified.
14+
# ---------------------------------
15+
# - Defines the labels "bug" and "documentation".
16+
# - Applies the "bug" label to changes in "src/**/*".
17+
# - Applies the "documentation" label to changes in "docs/**/*".
18+
# ---------------------------------
19+
20+
bug:
21+
- "src/**/*"
22+
documentation:
23+
- "docs/**/*"

.github/labels.yaml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# ---------------------------------
2+
# _____ __ __ ______ _
3+
# / ___// /_ ___ / /________ ____ / ____/__ ______________ ______(_)
4+
# \__ \/ __ \/ _ \/ / ___/ __ \/ __ \ / /_ / _ \/ ___/ ___/ __ `/ ___/ /
5+
# ___/ / / / / __/ (__ ) /_/ / / / / / __/ / __/ / / / / /_/ / / / /
6+
# /____/_/ /_/\___/_/____/\____/_/ /_/ /_/ \___/_/ /_/ \__,_/_/ /_/
7+
# ---------------------------------
8+
# Currency Conversion API
9+
# GitHub Labels Configuration File
10+
# ---------------------------------
11+
# This file defines the labels used in the GitHub repository
12+
# to categorize and prioritize issues and pull requests.
13+
# ---------------------------------
14+
# - Warning: Labels for warnings about bugs and vulnerabilities.
15+
# - Highlight: Labels for highlighting good first issues and those needing extra attention.
16+
# - Cancel: Labels for marking issues or pull requests as duplicates or those that will not be worked on.
17+
# - Size: Labels to indicate the size of issues or pull requests.
18+
# ---------------------------------
19+
20+
# ---------------------------------
21+
# Warning
22+
# ---------------------------------
23+
- color: "ee0701"
24+
description: "Categorize bug reports."
25+
name: ":warning: bug"
26+
- color: "ee0701"
27+
description: "Categorize vulnerability reports."
28+
name: ":warning: vulnerability"
29+
30+
# ---------------------------------
31+
# Highlight
32+
# ---------------------------------
33+
- color: "0e8a16"
34+
description: "Good for newcomers."
35+
name: ":fire: good first issue"
36+
- color: "0e8a16"
37+
description: "Extra attention is needed."
38+
name: ":fire: help wanted"
39+
40+
# ---------------------------------
41+
# Cancel
42+
# ---------------------------------
43+
- color: "b60205"
44+
description: "This issue or pull request already exists."
45+
name: ":pray: duplicate"
46+
- color: "b60205"
47+
description: "This will not be worked on."
48+
name: ":pray: wontfix"
49+
50+
# ---------------------------------
51+
# Size
52+
# ---------------------------------
53+
- color: "cfd3d7"
54+
description: "Extra Small size issue or PR."
55+
name: "size/XS"
56+
- color: "cfd3d7"
57+
description: "Small size issue or PR."
58+
name: "size/S"
59+
- color: "cfd3d7"
60+
description: "Medium size issue or PR."
61+
name: "size/M"
62+
- color: "cfd3d7"
63+
description: "Large size issue or PR."
64+
name: "size/L"
65+
- color: "cfd3d7"
66+
description: "Extra Large size issue or PR."
67+
name: "size/XL"

0 commit comments

Comments
 (0)