-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update workflows for more advanced samples; refresh and update (#45)
* Update workflows for more advanced samples; refresh and update
- Loading branch information
Showing
347 changed files
with
20,926 additions
and
54,087 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,8 @@ x86/ | |
[Aa][Rr][Mm]64/ | ||
bld/ | ||
[Bb]in/ | ||
[Dd]ist/ | ||
[Ll]ib/ | ||
[Oo]bj/ | ||
[Ll]og/ | ||
[Ll]ogs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"eslint.experimental.useFlatConfig": true, | ||
"eslint.workingDirectories": [ | ||
{ | ||
"pattern": "./addon_starter/*/" | ||
}, | ||
{ | ||
"pattern": "./custom_blocks/*/" | ||
}, | ||
{ | ||
"pattern": "./custom_items/*/" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
PROJECT_NAME="aop_mobs" | ||
MINECRAFT_PRODUCT="BedrockUWP" | ||
CUSTOM_DEPLOYMENT_PATH="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": false, | ||
"tabs": false, | ||
"backetSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 120 | ||
} | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": false, | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 120, | ||
"endOfLine": "auto" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"dependsOrder": "sequence", | ||
"dependsOn": [ | ||
"gulp: default" | ||
] | ||
{ | ||
"label": "build", | ||
"type": "shell", | ||
"command": "npm run build" | ||
}, | ||
{ | ||
"label": "deploy", | ||
"type": "shell", | ||
"command": "npm run local-deploy" | ||
} | ||
] | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import minecraftLinting from "eslint-plugin-minecraft-linting"; | ||
import tsParser from "@typescript-eslint/parser"; | ||
import ts from "@typescript-eslint/eslint-plugin"; | ||
|
||
export default [ | ||
{ | ||
files: ["scripts/**/*.ts"], | ||
languageOptions: { | ||
parser: tsParser, | ||
ecmaVersion: "latest", | ||
}, | ||
plugins: { | ||
ts, | ||
"minecraft-linting": minecraftLinting, | ||
}, | ||
rules: { | ||
"minecraft-linting/avoid-unnecessary-command": "error", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.