Skip to content

Commit bb33455

Browse files
committed
fix(settings): fixed 4 settings not being removed on color customization removal
1 parent 60fa493 commit bb33455

12 files changed

Lines changed: 17548 additions & 17542 deletions

File tree

.editorconfig

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Editor configuration, see http://editorconfig.org
2-
root = true
3-
4-
[*]
5-
charset = utf-8
6-
indent_style = space
7-
indent_size = 2
8-
insert_final_newline = true
9-
trim_trailing_whitespace = true
10-
end_of_line = lf
11-
12-
[*.md]
13-
max_line_length = off
14-
trim_trailing_whitespace = false
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
end_of_line = lf
11+
12+
[*.md]
13+
max_line_length = off
14+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
test/* linguist-vendored
1+
test/* linguist-vendored
22
*.png binary

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ about: Suggest an idea for this project
44
title: Simple feature request description
55
labels: enhancement
66
assignees: ghaschel
7-
87
---
98

109
**Is your feature request related to a problem? Please describe.**
1110
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12-
- If the feature request relates to any existing bug, please, insert here the link if possible
11+
12+
- If the feature request relates to any existing bug, please, insert here the link if possible
1313

1414
**Describe the solution you'd like**
1515
A clear and concise description of what you want to happen.

.gitignore

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
node_modules
2-
.vsix
3-
.DS_store
4-
*.sh
5-
.hushlogin
6-
test/externalGrammars/*.json
7-
test/externalGrammars/*.plist
8-
*.todo
9-
out/
10-
.vscode-test/
11-
12-
# PostCSS plist file is kept for testing as the repository got deleted
13-
# This will be reverted as soon as the current most used postcss extension
14-
# their scope injection
15-
!test/externalGrammars/source.postcss.tmLanguage.plist
1+
node_modules
2+
.vsix
3+
.DS_store
4+
*.sh
5+
.hushlogin
6+
test/externalGrammars/*.json
7+
test/externalGrammars/*.plist
8+
*.todo
9+
out/
10+
.vscode-test/
11+
12+
# PostCSS plist file is kept for testing as the repository got deleted
13+
# This will be reverted as soon as the current most used postcss extension
14+
# their scope injection
15+
!test/externalGrammars/source.postcss.tmLanguage.plist

.prettierignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
*.html
2-
*.html.snap
1+
*.html
2+
*.html.snap

commitlint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ module.exports = {
77
['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'improvement', 'perf', 'refactor', 'revert', 'style', 'test'],
88
],
99
},
10-
};
10+
};

docs/MIME-TYPES.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
> This are the allowed mime-types for script, style xml-stylesheet and link tags
44
55
## Summary
6+
67
- [Script tag](#script-tag)
78
- [Lang attribute](#lang-attribute)
89
- [Type attribute](#type-attribute)
@@ -135,5 +136,6 @@
135136
- text/postcss
136137

137138
## Reference
139+
138140
- [MIMEtype.io](https://mimetype.io/)
139-
- [IANA.org](https://www.iana.org/assignments/media-types/media-types.xhtml)
141+
- [IANA.org](https://www.iana.org/assignments/media-types/media-types.xhtml)

src/ts/token-customization/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ const removeLegacyColorCustomizations = async (): Promise<SettingsDictionary> =>
6060
settings['vscode-angular-html.primeNgElementTags'] = '';
6161
settings['vscode-angular-html.svgDAttributePathCommands'] = '';
6262
settings['vscode-angular-html.svgTags'] = '';
63+
settings['vscode-angular-html.ariaAttributePrefix'] = '';
64+
settings['vscode-angular-html.ariaAttributeSuffix'] = '';
65+
settings['vscode-angular-html.dataAttributePrefix'] = '';
66+
settings['vscode-angular-html.dataAttributeSuffix'] = '';
6367
settings['vscode-angular-html.xmlAttributeNamespaceDivider'] = '';
6468
settings['vscode-angular-html.xmlAttributeNamespaceSuffix'] = '';
6569
settings['vscode-angular-html.xmlStylesheetAttributesLanguageIdentifier'] = '';

0 commit comments

Comments
 (0)