Skip to content

Commit 3f1ac16

Browse files
authored
Initial commit
0 parents  commit 3f1ac16

File tree

5 files changed

+89
-0
lines changed

5 files changed

+89
-0
lines changed

.github/workflows/main.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
##################################################
2+
# Run Mr Coxall's Super Linter against code base #
3+
##################################################
4+
5+
---
6+
name: Mr Coxall's Super Linter
7+
8+
on: [push, pull_request]
9+
10+
jobs:
11+
run-linters:
12+
name: Mr Coxall's Super Linter
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Check out Git repository 🚦
17+
uses: actions/checkout@main
18+
19+
- name: Run GitHub Super Linter 🚀
20+
uses: github/super-linter@main
21+
env:
22+
VALIDATE_ALL_CODEBASE: true
23+
LINTER_RULES_PATH: /
24+
VALIDATE_CLANG_FORMAT: false
25+
VALIDATE_JAVASCRIPT_STANDARD: false
26+
DISABLE_ERRORS: true
27+
VALIDATE_GITLEAKS: false # for secrets detection
28+
VALIDATE_JSCPD: false # for copy and paste detection
29+
DEFAULT_BRANCH: main
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
replay_pid*

NameOfProgram.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* <Description>
3+
*
4+
* @author Atri Sarker
5+
* @version 1.0
6+
* @since 2025-Month-Day
7+
*/
8+
public final class NameOfProgram {
9+
/**
10+
* Private constructor to satisfy style checker.
11+
* @exception IllegalStateException for the utility class.
12+
* @see IllegalStateException
13+
*/
14+
private NameOfProgram() {
15+
// Prevents illegal states.
16+
throw new IllegalStateException("Utility class.");
17+
}
18+
19+
/**
20+
* Entrypoint of the program.
21+
* @param args UNUSED.
22+
*/
23+
public static void main(final String[] args) {
24+
// CODE GOES HERE
25+
}
26+
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# UnitX-XX-Java-NameOfProgram
2+
[![Mr Coxall's Super Linter](README.md/../../../workflows/Mr%20Coxall's%20Super%20Linter/badge.svg)](README.md/../../../actions)

package-info.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* package-info file for NameOfProgram.
3+
*
4+
* @author Atri Sarker
5+
* @version 1.0
6+
* @since 2025-Month-Day
7+
*/

0 commit comments

Comments
 (0)