Skip to content

Commit 3bc1990

Browse files
author
leopoldhub
committed
reforge
1 parent 359ca61 commit 3bc1990

22 files changed

Lines changed: 8677 additions & 1 deletion

package-lock.json

Lines changed: 81 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/resourcepack-packager.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"es6": true
5+
},
6+
"extends": ["airbnb-base", "prettier"],
7+
"parser": "@typescript-eslint/parser",
8+
"overrides": [
9+
{
10+
"files": ["*.ts", "*.tsx"],
11+
"extends": ["airbnb-typescript/base", "prettier"],
12+
"parserOptions": {
13+
"project": "./tsconfig.json"
14+
},
15+
"rules": {
16+
"comma-dangle": "off",
17+
"@typescript-eslint/comma-dangle": ["error", "never"]
18+
}
19+
}
20+
],
21+
"plugins": ["@typescript-eslint", "prettier"],
22+
"rules": {
23+
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
24+
"no-restricted-syntax": "off",
25+
"class-methods-use-this": "off",
26+
"prettier/prettier": [
27+
"error",
28+
{
29+
"trailingComma": "none"
30+
}
31+
],
32+
"no-empty": "off",
33+
"comma-dangle": ["error", "never"],
34+
"import/prefer-default-export": "off"
35+
}
36+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"trailingComma": "none",
8+
"bracketSpacing": true,
9+
"jsxBracketSameLine": false,
10+
"arrowParens": "always"
11+
}

src/resourcepack-packager/LICENSE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This work is licensed under the Creative Commons Attribution 4.0 International License.
2+
To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.

0 commit comments

Comments
 (0)