Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
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
14 changes: 14 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/lib

# npm
package-lock.json
npm-debug.log*
4 changes: 4 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 100,
"singleQuote": true
}
115 changes: 61 additions & 54 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,56 +1,63 @@
{
"name": "htmlhint",
"version": "0.0.0-development",
"description": "The Static Code Analysis Tool for your HTML",
"main": "./index",
"dependencies": {
"async": "1.5.2",
"colors": "1.1.2",
"commander": "2.9.0",
"csslint": "0.10.0",
"glob": "7.0.3",
"jshint": "2.9.4",
"parse-glob": "3.0.4",
"path-parse": "1.0.5",
"request": "2.72.0",
"strip-json-comments": "2.0.1",
"xml": "1.0.1"
},
"devDependencies": {
"expect.js": "0.3.1",
"grunt": "0.4.1",
"grunt-cli": "0.1.6",
"grunt-contrib-clean": "0.4.0",
"grunt-contrib-concat": "0.1.3",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-uglify": "0.2.0",
"grunt-contrib-watch": "0.3.1",
"grunt-exec": "0.4.6",
"grunt-replace": "0.4.0",
"istanbul": "0.4.3",
"istanbul-coveralls": "1.0.3",
"mocha": "2.4.5",
"semantic-release": "^15.9.9"
},
"bin": {
"htmlhint": "./bin/htmlhint"
},
"repository": {
"type": "git",
"url": "https://github.com/thedaviddias/HTMLHint.git"
},
"bugs": {
"url": "https://github.com/thedaviddias/HTMLHint/issues"
},
"keywords": [
"html",
"hint",
"analysis",
"javascript"
],
"author": "David Dias ([email protected])",
"license": "MIT",
"scripts": {
"semantic-release": "semantic-release"
}
"name": "htmlhint",
"version": "0.0.0-development",
"description": "The Static Code Analysis Tool for your HTML",
"main": "./index",
"scripts": {
"semantic-release": "semantic-release",
"precommit": "npm-run-all precommit:prettier",
"precommit:prettier": "pretty-quick --staged",
"prettier": "prettier --write ./**/*.{js,json,md} --ignore-path ./.prettierignore"
},
"dependencies": {
"async": "1.5.2",
"colors": "1.1.2",
"commander": "2.9.0",
"csslint": "0.10.0",
"glob": "7.0.3",
"jshint": "2.9.4",
"parse-glob": "3.0.4",
"path-parse": "1.0.5",
"request": "2.72.0",
"strip-json-comments": "2.0.1",
"xml": "1.0.1"
},
"devDependencies": {
"expect.js": "0.3.1",
"grunt": "0.4.1",
"grunt-cli": "0.1.6",
"grunt-contrib-clean": "0.4.0",
"grunt-contrib-concat": "0.1.3",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-uglify": "0.2.0",
"grunt-contrib-watch": "0.3.1",
"grunt-exec": "0.4.6",
"grunt-replace": "0.4.0",
"husky": "^0.14.3",
"istanbul": "0.4.3",
"istanbul-coveralls": "1.0.3",
"mocha": "2.4.5",
"npm-run-all": "^4.1.3",
"prettier": "1.14.2",
"pretty-quick": "^1.6.0",
"semantic-release": "^15.9.9"
},
"bin": {
"htmlhint": "./bin/htmlhint"
},
"repository": {
"type": "git",
"url": "https://github.com/thedaviddias/HTMLHint.git"
},
"bugs": {
"url": "https://github.com/thedaviddias/HTMLHint/issues"
},
"keywords": [
"html",
"hint",
"analysis",
"javascript"
],
"author": "David Dias ([email protected])",
"license": "MIT"
}