-
Notifications
You must be signed in to change notification settings - Fork 7
Nowa klasa Main #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,46 @@ | ||||||||||||||||||||||||||||||||||||||
| /* | ||||||||||||||||||||||||||||||||||||||
| * @(#)<main.Java.java <project-version> <2024/10/30> | ||||||||||||||||||||||||||||||||||||||
| * | ||||||||||||||||||||||||||||||||||||||
| * <Task management application> | ||||||||||||||||||||||||||||||||||||||
| * | ||||||||||||||||||||||||||||||||||||||
| * Built using <IntelliJ> IDE Version: <2023.2.5> | ||||||||||||||||||||||||||||||||||||||
| * OpenJDK Runtime Environment <OpenJDK>-<17.0.9> | ||||||||||||||||||||||||||||||||||||||
| * | ||||||||||||||||||||||||||||||||||||||
| */ | ||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+1
to
+9
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe there's been an misunderstanding of the comments specified in the CONTRIBUTING.md. But you did a great job in write as recommended way. Here's are the few suggested changes that you need to make to make this alright.
|
||||||||||||||||||||||||||||||||||||||
| /* | |
| * @(#)<main.Java.java <project-version> <2024/10/30> | |
| * | |
| * <Task management application> | |
| * | |
| * Built using <IntelliJ> IDE Version: <2023.2.5> | |
| * OpenJDK Runtime Environment <OpenJDK>-<17.0.9> | |
| * | |
| */ | |
| /* | |
| * @(#)Main.java 1.0.0 2024/10/30 | |
| * | |
| * Task management application | |
| * | |
| * Built using IntelliJ IDE Version: 2023.2.5 | |
| * OpenJDK Runtime Environment OpenJDK-17.0.9 | |
| * | |
| */ |
Check warning on line 14 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
Missing a Javadoc comment.
Raw Output:
/github/workspace/./src/Main.java:14:1: warning: Missing a Javadoc comment. (com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocTypeCheck)
Check warning on line 16 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
'class def modifier' has incorrect indentation level 4, expected level should be 2.
Raw Output:
/github/workspace/./src/Main.java:16:5: warning: 'class def modifier' has incorrect indentation level 4, expected level should be 2. (com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck)
Check warning on line 16 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
Missing a Javadoc comment.
Raw Output:
/github/workspace/./src/Main.java:16:5: warning: Missing a Javadoc comment. (com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocTypeCheck)
Check warning on line 18 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
'member def type' has incorrect indentation level 8, expected level should be 4.
Raw Output:
/github/workspace/./src/Main.java:18:9: warning: 'member def type' has incorrect indentation level 8, expected level should be 4. (com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck)
Check warning on line 19 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
'member def type' has incorrect indentation level 8, expected level should be 4.
Raw Output:
/github/workspace/./src/Main.java:19:9: warning: 'member def type' has incorrect indentation level 8, expected level should be 4. (com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck)
Check warning on line 20 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
'member def type' has incorrect indentation level 8, expected level should be 4.
Raw Output:
/github/workspace/./src/Main.java:20:9: warning: 'member def type' has incorrect indentation level 8, expected level should be 4. (com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck)
Check warning on line 23 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
'method def modifier' has incorrect indentation level 8, expected level should be 4.
Raw Output:
/github/workspace/./src/Main.java:23:9: warning: 'method def modifier' has incorrect indentation level 8, expected level should be 4. (com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck)
Check warning on line 24 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
Line is longer than 100 characters (found 101).
Raw Output:
/github/workspace/./src/Main.java:24:0: warning: Line is longer than 100 characters (found 101). (com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck)
Check warning on line 24 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
'method def' child has incorrect indentation level 12, expected level should be 6.
Raw Output:
/github/workspace/./src/Main.java:24:13: warning: 'method def' child has incorrect indentation level 12, expected level should be 6. (com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck)
Check warning on line 25 in src/Main.java
GitHub Actions / java-linter
[reviewdog] reported by reviewdog 🐶
'method def rcurly' has incorrect indentation level 8, expected level should be 4.
Raw Output:
/github/workspace/./src/Main.java:25:9: warning: 'method def rcurly' has incorrect indentation level 8, expected level should be 4. (com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck)
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Leszek186, I went thought your files and I found that you're placing your project/source-code file right on the root directory/folder i.e.,
src/Main.java.You have to place all of your project-files/source-code within a directory/folder that describes your work such as
Task-management-application/src/Main.java.Please place all your project-files/source-code as mentioned in the CONTRIBUTING.md.
Translation/Tłumaczenie