Skip to content

Commit

Permalink
fix(settings): fixed 4 settings not being removed on color customizat…
Browse files Browse the repository at this point in the history
…ion removal
  • Loading branch information
ghaschel committed Jun 20, 2023
1 parent 60fa493 commit bb33455
Show file tree
Hide file tree
Showing 12 changed files with 17,548 additions and 17,542 deletions.
28 changes: 14 additions & 14 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf

[*.md]
max_line_length = off
trim_trailing_whitespace = false
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf

[*.md]
max_line_length = off
trim_trailing_whitespace = false
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
test/* linguist-vendored
test/* linguist-vendored
*.png binary
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ about: Suggest an idea for this project
title: Simple feature request description
labels: enhancement
assignees: ghaschel

---

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

- If the feature request relates to any existing bug, please, insert here the link if possible

**Describe the solution you'd like**
A clear and concise description of what you want to happen.
Expand Down
30 changes: 15 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
node_modules
.vsix
.DS_store
*.sh
.hushlogin
test/externalGrammars/*.json
test/externalGrammars/*.plist
*.todo
out/
.vscode-test/

# PostCSS plist file is kept for testing as the repository got deleted
# This will be reverted as soon as the current most used postcss extension
# their scope injection
!test/externalGrammars/source.postcss.tmLanguage.plist
node_modules
.vsix
.DS_store
*.sh
.hushlogin
test/externalGrammars/*.json
test/externalGrammars/*.plist
*.todo
out/
.vscode-test/

# PostCSS plist file is kept for testing as the repository got deleted
# This will be reverted as soon as the current most used postcss extension
# their scope injection
!test/externalGrammars/source.postcss.tmLanguage.plist
4 changes: 2 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
*.html
*.html.snap
*.html
*.html.snap
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ module.exports = {
['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'improvement', 'perf', 'refactor', 'revert', 'style', 'test'],
],
},
};
};
4 changes: 3 additions & 1 deletion docs/MIME-TYPES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
> This are the allowed mime-types for script, style xml-stylesheet and link tags
## Summary

- [Script tag](#script-tag)
- [Lang attribute](#lang-attribute)
- [Type attribute](#type-attribute)
Expand Down Expand Up @@ -135,5 +136,6 @@
- text/postcss

## Reference

- [MIMEtype.io](https://mimetype.io/)
- [IANA.org](https://www.iana.org/assignments/media-types/media-types.xhtml)
- [IANA.org](https://www.iana.org/assignments/media-types/media-types.xhtml)
4 changes: 4 additions & 0 deletions src/ts/token-customization/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ const removeLegacyColorCustomizations = async (): Promise<SettingsDictionary> =>
settings['vscode-angular-html.primeNgElementTags'] = '';
settings['vscode-angular-html.svgDAttributePathCommands'] = '';
settings['vscode-angular-html.svgTags'] = '';
settings['vscode-angular-html.ariaAttributePrefix'] = '';
settings['vscode-angular-html.ariaAttributeSuffix'] = '';
settings['vscode-angular-html.dataAttributePrefix'] = '';
settings['vscode-angular-html.dataAttributeSuffix'] = '';
settings['vscode-angular-html.xmlAttributeNamespaceDivider'] = '';
settings['vscode-angular-html.xmlAttributeNamespaceSuffix'] = '';
settings['vscode-angular-html.xmlStylesheetAttributesLanguageIdentifier'] = '';
Expand Down
Loading

0 comments on commit bb33455

Please sign in to comment.