Skip to content

Commit f5a85ea

Browse files
committedApr 2, 2023
Init Project
0 parents  commit f5a85ea

File tree

8 files changed

+824
-0
lines changed

8 files changed

+824
-0
lines changed
 

‎.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
package-lock.json

‎.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package-lock.json
2+
node_modules/
3+
dist/
4+
*.txt

‎.prettierrc

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"arrowParens": "always",
3+
"singleQuote": true,
4+
"bracketSpacing": true,
5+
"endOfLine": "lf",
6+
"printWidth": 140,
7+
"semi": true,
8+
"tabWidth": 4,
9+
"trailingComma": "none",
10+
"overrides": [
11+
{
12+
"files": ["*.yml", "*.yaml"],
13+
"options": {
14+
"semi": false,
15+
"tabWidth": 2
16+
}
17+
},
18+
{
19+
"files": ["*.sh"],
20+
"options": {
21+
"semi": true,
22+
"tabWidth": 4
23+
}
24+
}
25+
]
26+
}

‎HEADER.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Copyright (c) 2023 - present | LuciferMorningstarDev <contact@lucifer-morningstar.xyz>
2+
Copyright (c) 2023 - present | whackdevelopment.com <contact@whackdevelopment.com>
3+
Copyright (c) 2023 - present | whackdevelopment.com team and contributors
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program. If not, see <https://www.gnu.org/licenses/>.

‎LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

‎index.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Copyright (c) 2023 - present | LuciferMorningstarDev <contact@lucifer-morningstar.xyz>
3+
* Copyright (c) 2023 - present | whackdevelopment.com <contact@whackdevelopment.com>
4+
* Copyright (c) 2023 - present | whackdevelopment.com team and contributors
5+
*
6+
* This program is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
*/
19+
20+
const fs = require('node:fs');

‎package.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "bash-scripts",
3+
"version": "1.0.0",
4+
"description": "Some Utility Bash Scripts",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"format": "npx prettier --write .",
9+
"prettier": "npx prettier --write .",
10+
"licenseCheck": "license-check-and-add check -f ./licenseConfig.json",
11+
"license": "license-check-and-add add -f ./licenseConfig.json"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "git+ssh://git@github.com/WhackDevelopment/bash-scripts.git"
16+
},
17+
"keywords": [
18+
"bash",
19+
"scripts",
20+
"utility",
21+
"screen",
22+
"linux",
23+
"ubuntu",
24+
"arch"
25+
],
26+
"author": "whackdevelopment.com",
27+
"license": "GPL-3.0",
28+
"bugs": {
29+
"url": "https://github.com/WhackDevelopment/bash-scripts/issues"
30+
},
31+
"homepage": "https://github.com/WhackDevelopment/bash-scripts#readme",
32+
"devDependencies": {
33+
"license-check-and-add": "^4.0.5",
34+
"prettier": "^2.8.7",
35+
"prettier-plugin-sh": "^0.12.8"
36+
}
37+
}

‎src/testing/FastFakeServer/.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.gradle
2+
build/
3+
target/
4+
**/target/
5+
!gradle/wrapper/gradle-wrapper.jar
6+
!**/src/main/**/build/
7+
!**/src/test/**/build/
8+
9+
### IntelliJ IDEA ###
10+
.idea/
11+
*.iws
12+
*.iml
13+
*.ipr
14+
out/
15+
!**/src/main/**/out/
16+
!**/src/test/**/out/
17+
18+
### Eclipse ###
19+
.apt_generated
20+
.classpath
21+
.factorypath
22+
.project
23+
.settings
24+
.springBeans
25+
.sts4-cache
26+
bin/
27+
!**/src/main/**/bin/
28+
!**/src/test/**/bin/
29+
30+
### NetBeans ###
31+
/nbproject/private/
32+
/nbbuild/
33+
/dist/
34+
/nbdist/
35+
/.nb-gradle/
36+
37+
### VS Code ###
38+
.vscode/
39+
40+
### Mac OS ###
41+
.DS_Store
42+
43+
### REST Test ###
44+
**/*.rest
45+
**/*.http

0 commit comments

Comments
 (0)