Skip to content

Commit

Permalink
fix(chore): add missing space, indendation, and add ignore file for l…
Browse files Browse the repository at this point in the history
…int scripts
  • Loading branch information
coolaj86 committed Mar 25, 2024
1 parent 6747e2a commit 5d9064f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/**/*
12 changes: 6 additions & 6 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": [
"*.js",
"bin/**/*.js",
"lib/**/*.js",
"src/**/*.js"
],
"*.js",
"bin/**/*.js",
"lib/**/*.js",
"src/**/*.js"
],
"exclude": ["node_modules"]
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npm run prettier",
"lint": "npm run tsc && npm run jshint",
"lint": "npm run jshint",
"--------------": "-----------------------------------------",
"jshint": "npx -p [email protected] -- jshint -c ./.jshintrc./*.js",
"jshint": "npx -p [email protected] -- jshint -c ./.jshintrc ./*.js",
"prettier": "npx -p [email protected] -- prettier -w '**/*.{js,md}'",
"reexport-types": "npx -p [email protected] -- reexport",
"tsc": "npx -p [email protected] -- tsc -p ./jsconfig.json",
Expand Down

0 comments on commit 5d9064f

Please sign in to comment.