Skip to content

Commit b2114c0

Browse files
committed
Applied prettier
1 parent cd64a95 commit b2114c0

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

.github/ISSUE_TEMPLATE/----bug-report.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ assignees: ''
77
---
88

99
# Describe the bug
10+
1011
A clear and concise description of what the bug is.
1112

1213
## To Reproduce
14+
1315
Steps to reproduce the behavior:
1416

1517
1. Go to '...'
@@ -18,12 +20,15 @@ Steps to reproduce the behavior:
1820
4. See error
1921

2022
## Expected behavior
23+
2124
A clear and concise description of what you expected to happen.
2225

2326
## Screenshots
27+
2428
If applicable, add screenshots to help explain your problem.
2529

2630
# Desktop information
31+
2732
Provide you OS version information
2833

2934
## NPM Version
@@ -43,4 +48,5 @@ Paste result here
4348
```
4449

4550
# Additional context
51+
4652
Add any other context about the problem here.

.vscode/extensions.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"recommendations": [
3-
"gruntfuggly.triggertaskonsave",
4-
"redhat.vscode-yaml"
5-
]
2+
"recommendations": ["gruntfuggly.triggertaskonsave", "redhat.vscode-yaml"]
63
}

mtasa-meta.yml

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
info:
2-
name: TypeScriptProject
3-
type: script
2+
name: TypeScriptProject
3+
type: script
44

55
compilerConfig:
6-
srcDir: TypeScriptProject
6+
srcDir: TypeScriptProject
77

88
scripts:
9-
- src: client.ts
10-
type: client
11-
cache: false
12-
13-
- src: server.ts
14-
type: server
15-
cache: false
9+
- src: client.ts
10+
type: client
11+
cache: false
1612

17-
- src: utils.ts
18-
type: shared
19-
cache: false
13+
- src: server.ts
14+
type: server
15+
cache: false
2016

21-
# You can add more resources. Just type --- and continue
17+
- src: utils.ts
18+
type: shared
19+
cache: false
20+
# You can add more resources. Just type --- and continue

src/TypeScriptProject/client.ts

-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,3 @@ addEventHandler<Event.OnClientResourceStart>(EventNames.OnClientResourceStart, r
1414

1515
outputChatBox('TypeScript Resource Boilerplate works.' + `In-game time: ${hours}:${minutes}`);
1616
});
17-
18-

src/TypeScriptProject/server.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import { Player } from 'mtasa-lua-types/types/mtasa/server/oop/Player';
77
import { outputChatBox } from 'mtasa-lua-types/types/mtasa/server/function/output';
88
import { firstLetterUpperCase } from './utils';
99
import { root, source } from 'mtasa-lua-types/types/mtasa/server/variables';
10-
import {mtasa} from 'mtasa-lua-types/types/mtasa/server';
10+
import { mtasa } from 'mtasa-lua-types/types/mtasa/server';
1111

1212
addEventHandler('onPlayerJoin', root, function () {
1313
const player = source as unknown as Player;
1414

1515
const name = firstLetterUpperCase(player.name);
1616
outputChatBox(`Welcome, ${name}!`);
17-
});
17+
});

0 commit comments

Comments
 (0)