We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0342ebf commit 127cd95Copy full SHA for 127cd95
bin/lint-staged
@@ -9,6 +9,9 @@ if (process.stdout.isTTY) {
9
process.env.FORCE_COLOR = '1'
10
}
11
12
+// Do not terminate main Listr process on SIGINT
13
+process.on('SIGINT', () => {})
14
+
15
const pkg = require('../package.json')
16
require('please-upgrade-node')(
17
Object.assign({}, pkg, {
src/runAll.js
@@ -103,9 +103,6 @@ https://github.com/okonet/lint-staged#using-js-functions-to-customize-linter-com
103
return 'No tasks to run.'
104
105
106
- // Do not terminate main Listr process on SIGINT
107
- process.on('SIGINT', () => {})
108
-
109
return new Listr(
110
[
111
{
0 commit comments