Skip to content

Commit 7f2ccd2

Browse files
committed
Add JSHint linting tool with config and output
1 parent 9a5eea8 commit 7f2ccd2

3 files changed

Lines changed: 118721 additions & 0 deletions

File tree

.jshintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
dist/
3+
coverage/

.jshintrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"esversion": 6,
3+
"node": true,
4+
"browser": true,
5+
"undef": true,
6+
"unused": true,
7+
"eqeqeq": true,
8+
"curly": true,
9+
"indent": 2,
10+
"maxlen": 100
11+
}

0 commit comments

Comments
 (0)