Skip to content

Commit bc5017d

Browse files
Templating and checkstyle, no code yet LOL.
0 parents  commit bc5017d

15 files changed

Lines changed: 825 additions & 0 deletions

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto eol=lf

.gitignore

Whitespace-only changes.

.prettierrc.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/**
2+
* Configuration for JSON file formatting.
3+
*/
4+
module.exports = {
5+
// Line width before Prettier tries to add new lines.
6+
printWidth: 80,
7+
8+
// Indent with 2 spaces.
9+
tabs: false,
10+
useTabs: false,
11+
tabWidth: 2,
12+
13+
// Use double quotes.
14+
singleQuote: false,
15+
quoteProps: "preserve",
16+
parser: "json",
17+
18+
bracketSpacing: true, // Spacing between brackets in object literals.
19+
trailingComma: "none", // No trailing commas.
20+
semi: false, // No semicolons at ends of statements.
21+
};

.vscode/extensions.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
// List of extensions which should be recommended for users of this workspace.
3+
"recommendations": [
4+
"redhat.java", // Language Support for Java
5+
"vscjava.vscode-gradle", // Gradle for Java
6+
7+
"nadako.vshaxe", // Haxe
8+
"wiggin77.codedox", // Haxe Documentation
9+
"vshaxe.haxe-checkstyle", // Haxe Checkstyle
10+
"esbenp.prettier-vscode", // Prettier Code Formatter
11+
],
12+
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
6+
## [1.0.0] - 2023-XX-XX
7+
Initial release.
8+
## Added
9+
## Changed
10+
## Fixed
11+
## Removed

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 EliteMasterEric
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# HxCraft
2+
3+
![](/art/logo.png)
4+
5+
HxCraft is a flexible, powerful Haxe framework to supercharge your Minecraft mod development. Build your mods in a high-level strictly-typed language and export to the Minecraft versionn and modding API of your choice.
6+
7+
# License
8+
9+
HxCraft's tools are made available under the MIT License. See [LICENSE.md](/LICENSE.md) for more details.

Run.hx

Whitespace-only changes.

art/logo.png

27.3 KB
Loading

art/logo.psd

191 KB
Binary file not shown.

0 commit comments

Comments
 (0)