Skip to content

Commit

Permalink
updated check-types to be nicer
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Jun 12, 2020
1 parent 4fc0122 commit 1ccc937
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,5 @@ module.exports = {
'.*/node_modules/.*',
]
},
ignorePatterns: ['coverage', 'build']
ignorePatterns: ['coverage', 'build', '/gulpfile.js', '/next.config.js']
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"list-tasks": "npm run && echo \"Compiling gulp task list...\" && gulp --tasks",
"repl": "rlwrap npx -p @babel/core -p @babel/node babel-node",
"preinstall": "npx npm-force-resolutions",
"check-types": "((unbuffer tsc && unbuffer eslint .) | less -R -FX || (tsc && eslint .)) && echo \"no problems detected!\""
"check-types": "(command -v unbuffer >/dev/null && (unbuffer tsc && unbuffer eslint .) | less -R -FX || (tsc && eslint .)) && echo \"no problems detected!\""
},
"author": "Xunnamius",
"license": "ISC",
Expand Down

0 comments on commit 1ccc937

Please sign in to comment.