Skip to content

Commit 92253d3

Browse files
authored
🔀 Merge #456: 🔖 v1.8.0-beta.1
### Related issues not mentioned in commits - Fixes #455 - Fixes #453 - Fixes #450 - Fixes #448 - Fixes #445 - Fixes #441 - Fixes #438
2 parents 7812bb3 + 2f7ffe6 commit 92253d3

File tree

283 files changed

+59601
-16787
lines changed

Some content is hidden

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

283 files changed

+59601
-16787
lines changed

.eslintrc.json

Lines changed: 0 additions & 140 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"typescript.tsdk": "node_modules\\typescript\\lib",
3+
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
34
"eslint.enable": true,
45
"editor.formatOnSave": true,
56
"prettier.enable": true,
@@ -28,5 +29,18 @@
2829
"errorLens.excludePatterns": ["**/node_modules/**/*"],
2930
"eslint.validate": ["javascript", "typescript", "svelte"],
3031
"eslint.useFlatConfig": true,
31-
"eslint.problems.shortenToSingleLine": true
32+
"eslint.problems.shortenToSingleLine": true,
33+
"workbench.colorCustomizations": {
34+
"editorGroupHeader.tabsBorder": "#00aced",
35+
"commandCenter.foreground": "#ffffffdd",
36+
"commandCenter.background": "#00aced77",
37+
"commandCenter.border": "#00aced"
38+
},
39+
"svelte.plugin.svelte.compilerWarnings": {
40+
"a11y_click_events_have_key_events": "ignore",
41+
"a11y_no_static_element_interactions": "ignore"
42+
},
43+
"mc-dp-icons.enableNamespaceIcons": false,
44+
"mc-dp-icons.enableChristmasIcons": "Disable",
45+
"mc-dp-icons.enableLoadTickAutoChange": false
3246
}

.vscode/tasks.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "shell",
6+
"command": "yarn check-formatting",
7+
"label": "Check formatting",
8+
"detail": "Reports any formatting issues via the problems view",
9+
"group": "test",
10+
"isBackground": true,
11+
"icon": {
12+
"id": "code",
13+
"color": "terminal.ansiMagenta"
14+
},
15+
"problemMatcher": "$prettier",
16+
"runOptions": {
17+
"instanceLimit": 1,
18+
"reevaluateOnRerun": true
19+
},
20+
"presentation": {
21+
"reveal": "never",
22+
"showReuseMessage": true,
23+
"clear": false,
24+
"revealProblems": "onProblem"
25+
}
26+
},
27+
{
28+
"type": "eslint",
29+
"problemMatcher": ["$eslint-stylish"],
30+
"label": "ESLint: Lint the whole project",
31+
"detail": "Reports any linting issues via the problems view",
32+
"group": "test",
33+
"icon": {
34+
"id": "code",
35+
"color": "terminal.ansiYellow"
36+
},
37+
"presentation": {
38+
"reveal": "never",
39+
"showReuseMessage": true,
40+
"clear": false,
41+
"revealProblems": "onProblem"
42+
},
43+
"runOptions": {
44+
"instanceLimit": 1,
45+
"instancePolicy": "terminateOldest",
46+
"reevaluateOnRerun": true
47+
}
48+
}
49+
]
50+
}

0 commit comments

Comments
 (0)