-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add file linting for size and name (#63)
See PR description for all changes
- Loading branch information
1 parent
3657865
commit 5f06ef0
Showing
343 changed files
with
2,298 additions
and
1,356 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
/docs/ @RocketLeagueMapmaking/guide |
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,35 @@ | ||
'section: blender': | ||
- changed-files: | ||
- any-glob-to-any-file: docs/guide/blender/** | ||
|
||
'section: decryption': | ||
- changed-files: | ||
- any-glob-to-any-file: docs/guide/decryption/** | ||
|
||
'section: get started': | ||
- changed-files: | ||
- any-glob-to-any-file: docs/essential/** | ||
|
||
'section: kismet': | ||
- changed-files: | ||
- any-glob-to-any-file: docs/guide/kismet/** | ||
|
||
'section: misc': | ||
- changed-files: | ||
- any-glob-to-any-file: docs/guide/misc/** | ||
|
||
'section: multiplayer': | ||
- changed-files: | ||
- any-glob-to-any-file: docs/guide/multiplayer/** | ||
|
||
'section: textures': | ||
- changed-files: | ||
- any-glob-to-any-file: docs/guide/textures/** | ||
|
||
'section: udk': | ||
- changed-files: | ||
- any-glob-to-any-file: docs/guide/udk/** | ||
|
||
config: | ||
- changed-files: | ||
- any-glob-to-any-file: docs/.vitepress/config/** |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
labeler: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v5 | ||
with: | ||
sync-labels: true |
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
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,42 @@ | ||
ls: | ||
deployment: | ||
.sh: snakecase | ||
|
||
.github: | ||
'{ISSUE_TEMPLATE,workflows}': | ||
.yml: snakecase | ||
|
||
docs: | ||
.dir: lowercase | ||
.md: snakecase | ||
|
||
.vitepress: | ||
.ts: lowercase | ||
|
||
public: | ||
.png: exists:0 | ||
|
||
# All icons should be snake case | ||
icons: | ||
.png: regex:logo_(\w|_|\d)+ | ||
|
||
images: | ||
# TODO: add this when ls-lint adds this | ||
# .png: not_regex:image\d+ | ||
|
||
# All images should be in the following folders only | ||
'{blender,udk}/*': | ||
.dir: regex:(basics|advanced|essential) | regex:(04_modeling|05_blender_course) | ||
|
||
'{cheatsheet,essential,guide/**/}': | ||
.md: regex:index|\d{2}_([a-z_])* | ||
|
||
# Overwrite md rule only for the flowchart folder | ||
flowchart_questions: | ||
.md: snakecase | ||
|
||
ignore: | ||
- .git | ||
- node_modules | ||
- docs/.vitepress/cache | ||
- docs/.vitepress/dist |
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 |
---|---|---|
|
@@ -4,6 +4,5 @@ | |
"MD025": false, | ||
"MD029": false, | ||
"MD033": false, | ||
"MD034": false, | ||
"MD036": false | ||
"MD034": false | ||
} |
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
Oops, something went wrong.