forked from Lumos-SS13/Lumos-3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
94 additions
and
48 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 |
---|---|---|
@@ -1,11 +1,14 @@ | ||
[*] | ||
insert_final_newline = true | ||
indent_style = tab | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
#end_of_line = lf | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.txt] | ||
insert_final_newline = false | ||
[*.py] | ||
indent_style = space |
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,9 +1,42 @@ | ||
# merger hooks, run tools/hooks/install.bat or install.sh to set up | ||
*.dmm merge=dmm | ||
*.dmi merge=dmi | ||
* text=auto | ||
|
||
# force changelog merging to use union | ||
html/changelog.html merge=union | ||
## Enforce text mode and LF line breaks | ||
## porter note: not yet LFing dm. | ||
# *.bat text eol=lf | ||
*.css text eol=lf | ||
# *.dm text eol=lf | ||
# *.dme text eol=lf | ||
# *.dmf text eol=lf | ||
*.htm text eol=lf | ||
*.html text eol=lf | ||
*.js text eol=lf | ||
*.json text eol=lf | ||
*.jsx text eol=lf | ||
# *.md text eol=lf | ||
*.py text eol=lf | ||
*.scss text eol=lf | ||
# *.sh text eol=lf | ||
# *.sql text eol=lf | ||
*.svg text eol=lf | ||
*.ts text eol=lf | ||
*.tsx text eol=lf | ||
# *.txt text eol=lf | ||
*.yaml text eol=lf | ||
*.yml text eol=lf | ||
|
||
# force all files to be LF | ||
* text=auto | ||
## Enforce binary mode | ||
*.bmp binary | ||
*.dll binary | ||
*.dmb binary | ||
*.exe binary | ||
*.gif binary | ||
*.jpg binary | ||
*.png binary | ||
*.so binary | ||
|
||
## Merger hooks, run tools/hooks/install.bat or install.sh to set up | ||
*.dmm text eol=lf merge=dmm | ||
*.dmi binary merge=dmi | ||
|
||
## Force changelog merging to use union | ||
html/changelog.html text eol=lf merge=union |
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,12 @@ | ||
name: "Round ID Linker" | ||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
link_rounds: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Cidatel-Station-13/round_linker@master #notice: fork the round linkies from tg!! | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
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,11 @@ | ||
build: | ||
stage: build | ||
rules: | ||
- if: $CI_MERGE_REQUEST_IID || $CI_COMMIT_REF_NAME == "master" | ||
changes: | ||
- tgui/**/*.js | ||
- tgui/**/*.scss | ||
when: always | ||
image: node:lts | ||
script: | ||
- tgui/bin/tgui --ci |
Empty file.