Skip to content

Commit

Permalink
Merge pull request #131 from zalando/remove-htmllint
Browse files Browse the repository at this point in the history
Replaces htmllint-cli with eslint-plugin-html
  • Loading branch information
bocytko committed Oct 31, 2023
2 parents 61c59a2 + 18d8975 commit bfb3a4e
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1,356 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"browser": true,
"es6": true
},
"plugins": ["html"],
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2015,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
},
"devDependencies": {
"browser-sync": "^2.29.3",
"eslint": "^8.42.0",
"htmllint-cli": "^0.0.7",
"eslint": "^8.52.0",
"eslint-plugin-html": "^7.1.0",
"socket.io": "^4.7.2"
},
"scripts": {
"start": "browser-sync docs -w",
"lint": "npm run lint:js && npm run lint:html",
"lint:js": "eslint docs/*.js",
"lint:html": "htmllint docs/*.html"
"lint:html": "eslint docs/*.html"
}
}
Loading

0 comments on commit bfb3a4e

Please sign in to comment.