Fix linting #98

Merged
BehindTheMath merged 3 commits from bugfix/fix-linting into master 2018-01-09 14:09:41 -05:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 0c44cb473d - Show all commits

View File

@@ -1,6 +1,7 @@
{
"excludeFiles": [
"node_modules/**"
"node_modules/**",
"pjax.js"
],
"fileExtensions": [
".js"

View File

@@ -35,7 +35,7 @@
"tape": "^3.0.0"
},
"scripts": {
"lint": "jscs **/*.js && jshint . --exclude-path .gitignore",
"lint": "jscs . && jshint . --exclude-path .gitignore",
"standalone": "browserify index.js --standalone Pjax > pjax.js",
"build-debug": "browserify index.js --debug --standalone Pjax > pjax.js",
"tests": "tape -r ./tests/index.js ./tests/**/*.js",