Skip to content

Commit d0d9714

Browse files
committed
fix(settings): fixed an issue with changing settings through the settings page
fix #72
1 parent 70455f5 commit d0d9714

31 files changed

Lines changed: 3361 additions & 3363 deletions

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,7 @@ var tsRules = {
470470
...baseTsRules,
471471
'max-classes-per-file': ['error', { ignoreExpressions: true, max: 1 }],
472472
'@typescript-eslint/no-require-imports': ['error'],
473+
'prettier/prettier': 2,
473474
};
474475

475476
module.exports = {

.github/ISSUE_TEMPLATE/theme_support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ about: Ask for support for a specific theme, or a change in a specific theme.
44
title: Support extra-matched characters colors for XYZ theme
55
labels: theme support
66
assignees: ghaschel
7-
87
---
98

109
**Is your request a change or a new theme?**
10+
1111
- [ ] Change
1212
- [ ] Request
1313

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"type": "extensionHost",
1111
"request": "launch",
1212
"args": ["${workspaceFolder}/out", "--extensionDevelopmentPath=${workspaceFolder}"],
13-
"outFiles": ["${workspaceFolder}/out/**/*.js"],
14-
"preLaunchTask": "${defaultBuildTask}"
13+
"outFiles": ["${workspaceFolder}/out/**/*.js"]
14+
// "preLaunchTask": "${defaultBuildTask}"
1515
},
1616
{
1717
"name": "Run Extension Tests",

.vscode/settings.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"search.exclude": {
3-
"out": true
3+
"out": true,
4+
"node_modules": true
45
},
56
"eslint.options": {
67
"extensions": [".ts"]
78
},
9+
"editor.formatOnSave": true,
810
"eslint.validate": ["typescript", "typescriptreact"],
911
"[typescript]": {
1012
"editor.formatOnSave": false,
@@ -17,8 +19,5 @@
1719
},
1820
"html.format.extraLiners": "head, body, /html, fieldset",
1921
"html.format.wrapAttributes": "force-expand-multiline",
20-
"html.format.indentInnerHtml": true,
21-
"scss.validate": false,
22-
"css.validate": false,
23-
"less.validate": false
22+
"html.format.indentInnerHtml": true
2423
}

.vscode/tasks.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
// See https://go.microsoft.com/fwlink/?LinkId=733558
2-
// for the documentation about the tasks.json format
3-
{
4-
"version": "2.0.0",
5-
"tasks": [
6-
{
7-
"type": "npm",
8-
"script": "watch",
9-
"problemMatcher": "$tsc-watch",
10-
"isBackground": true,
11-
"presentation": {
12-
"reveal": "never"
13-
},
14-
"group": {
15-
"kind": "build",
16-
"isDefault": true
17-
}
18-
}
19-
]
20-
}
1+
// See https://go.microsoft.com/fwlink/?LinkId=733558
2+
// for the documentation about the tasks.json format
3+
{
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "watch",
9+
"problemMatcher": "$tsc-watch",
10+
"isBackground": true,
11+
"presentation": {
12+
"reveal": "never"
13+
},
14+
"group": {
15+
"kind": "build",
16+
"isDefault": true
17+
}
18+
}
19+
]
20+
}
Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
{
2-
textMateRules: [
3-
{
4-
scope: 'html-template.ng.interpolation.begin',
5-
configRule: 'vscode-angular-html.angularExpression',
6-
},
7-
{
8-
scope: 'html-template.ng.interpolation.end',
9-
configRule: 'vscode-angular-html.angularExpression',
10-
},
11-
],
12-
}
13-
1+
{
2+
textMateRules: [
3+
{
4+
scope: 'html-template.ng.interpolation.begin',
5+
configRule: 'vscode-angular-html.angularExpression',
6+
},
7+
{
8+
scope: 'html-template.ng.interpolation.end',
9+
configRule: 'vscode-angular-html.angularExpression',
10+
},
11+
],
12+
}
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
{
2-
textMateRules: [
3-
{
4-
scope: 'html-template.ng.exclamation.doctype',
5-
configRule: 'vscode-angular-html.htmlDoctypeExclamation',
6-
},
7-
{
8-
scope: 'html-template.ng.doctype',
9-
configRule: 'vscode-angular-html.htmlDoctypeElement',
10-
},
11-
{
12-
scope: 'html-template.ng.attribute.doctype',
13-
configRule: 'vscode-angular-html.htmlDoctypeAttributes',
14-
},
15-
],
16-
}
1+
{
2+
textMateRules: [
3+
{
4+
scope: 'html-template.ng.exclamation.doctype',
5+
configRule: 'vscode-angular-html.htmlDoctypeExclamation',
6+
},
7+
{
8+
scope: 'html-template.ng.doctype',
9+
configRule: 'vscode-angular-html.htmlDoctypeElement',
10+
},
11+
{
12+
scope: 'html-template.ng.attribute.doctype',
13+
configRule: 'vscode-angular-html.htmlDoctypeAttributes',
14+
},
15+
],
16+
}
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
{
2-
textMateRules: [
3-
{
4-
scope: 'html-template.ng.attributes.generic',
5-
configRule: 'vscode-angular-html.htmlGenericAttributesFollowedByParameter',
6-
},
7-
],
8-
}
9-
1+
{
2+
textMateRules: [
3+
{
4+
scope: 'html-template.ng.attributes.generic',
5+
configRule: 'vscode-angular-html.htmlGenericAttributesFollowedByParameter',
6+
},
7+
],
8+
}
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
{
2-
textMateRules: [
3-
{
4-
scope: 'html-template.ng.attributes.events',
5-
configRule: 'vscode-angular-html.htmlEventsAttributes',
6-
},
7-
],
8-
}
9-
1+
{
2+
textMateRules: [
3+
{
4+
scope: 'html-template.ng.attributes.events',
5+
configRule: 'vscode-angular-html.htmlEventsAttributes',
6+
},
7+
],
8+
}
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
{
2-
textMateRules: [
3-
{
4-
scope: 'punctuation.separator.key-value.html-template.ng',
5-
configRule: 'vscode-angular-html.htmlAttributeValueSeparator',
6-
},
7-
],
8-
}
1+
{
2+
textMateRules: [
3+
{
4+
scope: 'punctuation.separator.key-value.html-template.ng',
5+
configRule: 'vscode-angular-html.htmlAttributeValueSeparator',
6+
},
7+
],
8+
}

0 commit comments

Comments
 (0)