Skip to content

Commit 44c15d7

Browse files
authored
Merge pull request #10 from htmlhint/dev/coliff/minor-fix
Fixes
2 parents 0692a2e + e6a1bdb commit 44c15d7

File tree

10 files changed

+29
-137
lines changed

10 files changed

+29
-137
lines changed

.cspell.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"version": "0.2",
3-
"words": ["Merbivore"],
3+
"words": ["dbaeumer", "fediverse", "Merbivore"],
44
"allowCompoundWords": true,
55
"language": "en,en-US",
6-
"ignorePaths": ["*.css", ".cspell.json"],
6+
"ignorePaths": ["*.css", ".cspell.json", "*.min.*"],
77
"useGitignore": true
88
}

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.min.*

.eslintrc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"root": true,
3+
"env": {
4+
"es6": true,
5+
"node": true
6+
},
7+
"extends": ["eslint:recommended"],
8+
"rules": {
9+
"no-undef": "off"
10+
}
11+
}

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.html
22
*.min.*
33
*.js
4+
.cspell.json

.vscode/extensions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"recommendations": [
33
"dbaeumer.vscode-eslint",
44
"EditorConfig.EditorConfig",
5+
"HTMLHint.vscode-htmlhint",
56
"streetsidesoftware.code-spell-checker"
67
]
78
}

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ <h3>Other</h3>
166166
</footer>
167167
</div>
168168
<script src="js/jquery-1.9.1.min.js"></script>
169-
<script src="js/jquery.cookie.js"></script>
169+
<script src="js/jquery.cookie.min.js"></script>
170170
<script src="js/htmlhint.min.js"></script>
171171
<script src="js/ace/ace.js" charset="utf-8"></script>
172172
<script src="js/csslint.js"></script>

docs/js/ie-warning.js

Lines changed: 0 additions & 37 deletions
This file was deleted.

docs/js/jquery.cookie.js

Lines changed: 0 additions & 94 deletions
This file was deleted.

docs/js/jquery.cookie.min.js

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"private": true,
55
"description": "HTMLHint Playground",
6-
"homepage": "https://htmlhint-playground.netlify.app/",
6+
"homepage": "https://playground.htmlhint.com/",
77
"bugs": {
88
"url": "https://github.com/htmlhint/htmlhint-playground/issues"
99
},
@@ -18,9 +18,10 @@
1818
"license": "MIT",
1919
"author": "HTMLHint",
2020
"scripts": {
21+
"eslint": "npx eslint docs/js/*.js --fix",
2122
"htmlhint": "npx htmlhint .",
22-
"pa11y-ci": "npx pa11y-ci https://htmlhint-playground.netlify.app/",
23-
"prettier": "npx prettier --write .",
23+
"pa11y-ci": "npx pa11y-ci https://playground.htmlhint.com/",
24+
"prettier": "npx prettier --write .{css,json,yml}",
2425
"serve": "npx http-server -o docs/index.html -p 8080 -c-1"
2526
},
2627
"engines": {

0 commit comments

Comments
 (0)