Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.0.5 #126

Merged
merged 1 commit into from
May 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion htmlhint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

All notable changes to the "vscode-htmlhint" extension will be documented in this file.

<!-- Check [Keep a Changelog](https://keepachangelog.com/) for recommendations on how to structure this file. -->
### v1.0.5 (2023-05-17)

- Fix for activationEvents (now can be used in `markdown` and other files)
- Reduced file-size and minor optimizations

### v1.0.4 (2022-10-07)

Expand Down
6 changes: 3 additions & 3 deletions htmlhint/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions htmlhint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "HTMLHint",
"description": "VS Code integration for HTMLHint - A Static Code Analysis Tool for HTML",
"icon": "images/icon.png",
"version": "1.0.4",
"version": "1.0.5",
"publisher": "HTMLHint",
"galleryBanner": {
"color": "#333333",
Expand All @@ -29,13 +29,13 @@
"vscode": "^1.16.0"
},
"activationEvents": [
"onLanguage:html"
"onFileSystem:file"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "HTMLHint configuration",
"title": "HTMLHint",
"properties": {
"htmlhint.enable": {
"type": "boolean",
Expand Down Expand Up @@ -66,7 +66,7 @@
},
"devDependencies": {
"typescript": "2.9.2",
"vscode": "^1.1.37",
"vscode": "1.1.37",
"@types/node": "6.0.118"
},
"dependencies": {
Expand Down
90 changes: 45 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"test": "npm run prettier && npm run lint && cd htmlhint && npm i && cd ../htmlhint-server && npm i && npm run compile"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8"
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"prettier": "2.8.8"
},
"engines": {
"node": ">= 16"
Expand Down
9 changes: 9 additions & 0 deletions test/testNoConfigFile/markdown.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Markdown Test

<html>
<head>
</head>
<body>
<img src="" height="20" width="20" />
</body>
</html>