Skip to content

Commit ab8ffd2

Browse files
authored
Merge pull request #1233 from thkruz/develop
Update Documentation and Implement User API V2
2 parents bf110f2 + 6c8f996 commit ab8ffd2

File tree

248 files changed

+9137
-7963
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

248 files changed

+9137
-7963
lines changed

.deepsource.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version = 1
2+
3+
test_patterns = ["*.test.js"]
4+
5+
exclude_patterns = [
6+
"src/lib/external/*",
7+
"src/engine/ootk/*",
8+
"*mSat.js*",
9+
"*/offline/*",
10+
]
11+
12+
[[analyzers]]
13+
name = "javascript"
14+
enabled = true
15+
16+
[analyzers.meta]

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,6 @@ cypress.config.ts
131131

132132
# Generated Locale Files
133133
src/locales/keys.ts
134-
src/locales/*.json
134+
src/locales/*.json
135+
136+
**/*.notes.md

.vscode/launch.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@
99
"type": "node",
1010
"request": "launch",
1111
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/jest",
12-
"args": ["${fileBasenameNoExtension}", "--runInBand", "--coverage=false", "--no-cache"],
12+
"args": [
13+
"${fileBasenameNoExtension}",
14+
"--runInBand",
15+
"--coverage=false",
16+
"--no-cache"
17+
],
1318
"cwd": "${workspaceFolder}",
1419
"console": "integratedTerminal",
1520
"internalConsoleOptions": "neverOpen",
@@ -22,11 +27,11 @@
2227
"name": "Chrome",
2328
"type": "chrome",
2429
"request": "launch",
25-
"url": "http://localhost:8080",
30+
"url": "http://localhost:5544",
2631
"webRoot": "${workspaceFolder}",
2732
"sourceMapPathOverrides": {
2833
"webpack:///src/*": "${workspaceFolder}/src/*"
2934
}
3035
}
3136
]
32-
}
37+
}

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
"editor.rulers": [
8282
180
8383
],
84+
"rewrap.wrappingColumn": 180,
8485
"sonarlint.connectedMode.project": {
8586
"connectionId": "http-localhost-9000",
8687
"projectKey": "keeptrack"

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"windows": {
116116
"command": "C:/Program Files/BraveSoftware/Brave-Browser/Application/brave.exe",
117117
"args": [
118-
"http://localhost:8080"
118+
"http://localhost:5544"
119119
]
120120
},
121121
"icon": {

0 commit comments

Comments
 (0)