lint-staged 10.0.3 → 10.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -16
- package/bin/{lint-staged → lint-staged.js} +5 -6
- package/lib/file.js +48 -35
- package/lib/getStagedFiles.js +1 -1
- package/lib/gitWorkflow.js +36 -27
- package/lib/index.js +1 -1
- package/lib/resolveGitRepo.js +26 -22
- package/lib/runAll.js +10 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -166,7 +166,19 @@ Supported are any executables installed locally or globally via `npm` as well as
|
|
|
166
166
|
|
|
167
167
|
Pass arguments to your commands separated by space as you would do in the shell. See [examples](#examples) below.
|
|
168
168
|
|
|
169
|
-
|
|
169
|
+
## Running multiple commands in a sequence
|
|
170
|
+
|
|
171
|
+
You can run multiple commands in a sequence on every glob. To do so, pass an array of commands instead of a single one. This is useful for running autoformatting tools like `eslint --fix` or `stylefmt` but can be used for any arbitrary sequences.
|
|
172
|
+
|
|
173
|
+
For example:
|
|
174
|
+
|
|
175
|
+
```json
|
|
176
|
+
{
|
|
177
|
+
"*.js": ["eslint", "prettier --write"]
|
|
178
|
+
}
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
going to execute `eslint` and if it exits with `0` code, it will execute `prettier --write` on all staged `*.js` files.
|
|
170
182
|
|
|
171
183
|
## Using JS functions to customize tasks
|
|
172
184
|
|
|
@@ -332,23 +344,11 @@ For example, here is `jest` running on all `.js` files with the `NODE_ENV` varia
|
|
|
332
344
|
}
|
|
333
345
|
```
|
|
334
346
|
|
|
335
|
-
### Automatically fix code style with `prettier` for javascript
|
|
336
|
-
|
|
337
|
-
```json
|
|
338
|
-
{
|
|
339
|
-
"*.{js,jsx}": "prettier --write"
|
|
340
|
-
}
|
|
341
|
-
```
|
|
342
|
-
|
|
343
|
-
```json
|
|
344
|
-
{
|
|
345
|
-
"*.{ts,tsx}": "prettier --write"
|
|
346
|
-
}
|
|
347
|
-
```
|
|
347
|
+
### Automatically fix code style with `prettier` for javascript, typescript, markdown, HTML, or CSS
|
|
348
348
|
|
|
349
349
|
```json
|
|
350
350
|
{
|
|
351
|
-
"*.{md,html}": "prettier --write"
|
|
351
|
+
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
|
|
352
352
|
}
|
|
353
353
|
```
|
|
354
354
|
|
|
@@ -365,7 +365,7 @@ For example, here is `jest` running on all `.js` files with the `NODE_ENV` varia
|
|
|
365
365
|
|
|
366
366
|
```json
|
|
367
367
|
{
|
|
368
|
-
"*.scss": "postcss --config path/to/your/config --replace", "stylelint"
|
|
368
|
+
"*.scss": ["postcss --config path/to/your/config --replace", "stylelint"]
|
|
369
369
|
}
|
|
370
370
|
```
|
|
371
371
|
|
|
@@ -3,10 +3,9 @@
|
|
|
3
3
|
'use strict'
|
|
4
4
|
|
|
5
5
|
// Force colors for packages that depend on https://www.npmjs.com/package/supports-color
|
|
6
|
-
|
|
7
|
-
if (
|
|
8
|
-
|
|
9
|
-
process.env.FORCE_COLOR = '1'
|
|
6
|
+
const { supportsColor } = require('chalk')
|
|
7
|
+
if (supportsColor) {
|
|
8
|
+
process.env.FORCE_COLOR = supportsColor.level.toString()
|
|
10
9
|
}
|
|
11
10
|
|
|
12
11
|
// Do not terminate main Listr process on SIGINT
|
|
@@ -36,7 +35,7 @@ cmdline
|
|
|
36
35
|
'-p, --concurrent <parallel tasks>',
|
|
37
36
|
'the number of tasks to run concurrently, or false to run tasks serially',
|
|
38
37
|
true
|
|
39
|
-
|
|
38
|
+
)
|
|
40
39
|
.option('-q, --quiet', 'disable lint-staged’s own console output', false)
|
|
41
40
|
.option('-r, --relative', 'pass relative filepaths to tasks', false)
|
|
42
41
|
.option('-x, --shell', 'skip parsing of tasks for better shell support', false)
|
|
@@ -74,7 +73,7 @@ const options = {
|
|
|
74
73
|
maxArgLength: getMaxArgLength() / 2,
|
|
75
74
|
quiet: !!cmdline.quiet,
|
|
76
75
|
relative: !!cmdline.relative,
|
|
77
|
-
shell: !!cmdline.shell
|
|
76
|
+
shell: !!cmdline.shell
|
|
78
77
|
}
|
|
79
78
|
|
|
80
79
|
debug('Options parsed from command-line:', options)
|
package/lib/file.js
CHANGED
|
@@ -2,67 +2,80 @@
|
|
|
2
2
|
|
|
3
3
|
const debug = require('debug')('lint-staged:file')
|
|
4
4
|
const fs = require('fs')
|
|
5
|
+
const { promisify } = require('util')
|
|
5
6
|
|
|
6
|
-
const
|
|
7
|
+
const fsAccess = promisify(fs.access)
|
|
8
|
+
const fsReadFile = promisify(fs.readFile)
|
|
9
|
+
const fsUnlink = promisify(fs.unlink)
|
|
10
|
+
const fsWriteFile = promisify(fs.writeFile)
|
|
7
11
|
|
|
8
12
|
/**
|
|
9
|
-
* Check if a file exists. Returns the
|
|
10
|
-
* @param {
|
|
13
|
+
* Check if a file exists. Returns the filename if exists.
|
|
14
|
+
* @param {String} filename
|
|
15
|
+
* @returns {String|Boolean}
|
|
11
16
|
*/
|
|
12
|
-
const exists = async
|
|
17
|
+
const exists = async filename => {
|
|
13
18
|
try {
|
|
14
|
-
await
|
|
15
|
-
return
|
|
19
|
+
await fsAccess(filename)
|
|
20
|
+
return filename
|
|
16
21
|
} catch {
|
|
17
22
|
return false
|
|
18
23
|
}
|
|
19
24
|
}
|
|
20
25
|
|
|
21
26
|
/**
|
|
27
|
+
* Read contents of a file to buffer
|
|
22
28
|
* @param {String} filename
|
|
23
|
-
* @
|
|
29
|
+
* @param {Boolean} [ignoreENOENT=true] — Whether to throw if the file doesn't exist
|
|
30
|
+
* @returns {Promise<Buffer>}
|
|
24
31
|
*/
|
|
25
|
-
const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
}
|
|
32
|
+
const readFile = async (filename, ignoreENOENT = true) => {
|
|
33
|
+
debug('Reading file `%s`', filename)
|
|
34
|
+
try {
|
|
35
|
+
return await fsReadFile(filename)
|
|
36
|
+
} catch (error) {
|
|
37
|
+
if (ignoreENOENT && error.code === 'ENOENT') {
|
|
38
|
+
debug("File `%s` doesn't exist, ignoring...", filename)
|
|
39
|
+
return null // no-op file doesn't exist
|
|
40
|
+
} else {
|
|
41
|
+
throw error
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
37
45
|
|
|
38
46
|
/**
|
|
39
47
|
* Unlink a file if it exists
|
|
40
|
-
* @param {
|
|
48
|
+
* @param {String} filename
|
|
49
|
+
* @param {Boolean} [ignoreENOENT=true] — Whether to throw if the file doesn't exist
|
|
41
50
|
*/
|
|
42
|
-
const unlink = async
|
|
43
|
-
if (
|
|
44
|
-
|
|
45
|
-
|
|
51
|
+
const unlink = async (filename, ignoreENOENT = true) => {
|
|
52
|
+
if (filename) {
|
|
53
|
+
debug('Unlinking file `%s`', filename)
|
|
54
|
+
try {
|
|
55
|
+
await fsUnlink(filename)
|
|
56
|
+
} catch (error) {
|
|
57
|
+
if (ignoreENOENT && error.code === 'ENOENT') {
|
|
58
|
+
debug("File `%s` doesn't exist, ignoring...", filename)
|
|
59
|
+
} else {
|
|
60
|
+
throw error
|
|
61
|
+
}
|
|
62
|
+
}
|
|
46
63
|
}
|
|
47
64
|
}
|
|
48
65
|
|
|
49
66
|
/**
|
|
67
|
+
* Write buffer to file
|
|
50
68
|
* @param {String} filename
|
|
51
69
|
* @param {Buffer} buffer
|
|
52
|
-
* @returns {Promise<Void>}
|
|
53
70
|
*/
|
|
54
|
-
const
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
debug('Done writing buffer to file `%s`!', filename)
|
|
59
|
-
resolve()
|
|
60
|
-
})
|
|
61
|
-
})
|
|
71
|
+
const writeFile = async (filename, buffer) => {
|
|
72
|
+
debug('Writing file `%s`', filename)
|
|
73
|
+
await fsWriteFile(filename, buffer)
|
|
74
|
+
}
|
|
62
75
|
|
|
63
76
|
module.exports = {
|
|
64
77
|
exists,
|
|
65
|
-
|
|
78
|
+
readFile,
|
|
66
79
|
unlink,
|
|
67
|
-
|
|
80
|
+
writeFile
|
|
68
81
|
}
|
package/lib/getStagedFiles.js
CHANGED
package/lib/gitWorkflow.js
CHANGED
|
@@ -4,7 +4,7 @@ const debug = require('debug')('lint-staged:git')
|
|
|
4
4
|
const path = require('path')
|
|
5
5
|
|
|
6
6
|
const execGit = require('./execGit')
|
|
7
|
-
const { exists,
|
|
7
|
+
const { exists, readFile, unlink, writeFile } = require('./file')
|
|
8
8
|
|
|
9
9
|
const MERGE_HEAD = 'MERGE_HEAD'
|
|
10
10
|
const MERGE_MODE = 'MERGE_MODE'
|
|
@@ -18,23 +18,6 @@ const PATCH_UNTRACKED = 'lint-staged_untracked.patch'
|
|
|
18
18
|
const GIT_APPLY_ARGS = ['apply', '-v', '--whitespace=nowarn', '--recount', '--unidiff-zero']
|
|
19
19
|
const GIT_DIFF_ARGS = ['--binary', '--unified=0', '--no-color', '--no-ext-diff', '--patch']
|
|
20
20
|
|
|
21
|
-
/**
|
|
22
|
-
* Delete untracked files using `git clean`
|
|
23
|
-
* @param {Function} execGit function for executing git commands using execa
|
|
24
|
-
* @returns {Promise<void>}
|
|
25
|
-
*/
|
|
26
|
-
const cleanUntrackedFiles = async execGit => {
|
|
27
|
-
const untrackedFiles = await execGit(['ls-files', '--others', '--exclude-standard'])
|
|
28
|
-
if (untrackedFiles) {
|
|
29
|
-
debug('Detected unstaged, untracked files: ', untrackedFiles)
|
|
30
|
-
debug(
|
|
31
|
-
'This is probably due to a bug in git =< 2.13.0 where `git stash --keep-index` resurrects deleted files.'
|
|
32
|
-
)
|
|
33
|
-
debug('Deleting the files using `git clean`...')
|
|
34
|
-
await execGit(['clean', '--force', ...untrackedFiles.split('\n')])
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
21
|
const handleError = (error, ctx) => {
|
|
39
22
|
ctx.gitError = true
|
|
40
23
|
throw error
|
|
@@ -44,6 +27,7 @@ class GitWorkflow {
|
|
|
44
27
|
constructor({ allowEmpty, gitConfigDir, gitDir, stagedFileChunks }) {
|
|
45
28
|
this.execGit = (args, options = {}) => execGit(args, { ...options, cwd: gitDir })
|
|
46
29
|
this.gitConfigDir = gitConfigDir
|
|
30
|
+
this.gitDir = gitDir
|
|
47
31
|
this.unstagedDiff = null
|
|
48
32
|
this.allowEmpty = allowEmpty
|
|
49
33
|
this.stagedFileChunks = stagedFileChunks
|
|
@@ -73,7 +57,7 @@ class GitWorkflow {
|
|
|
73
57
|
const resolved = this.getHiddenFilepath(filename)
|
|
74
58
|
const pathIfExists = await exists(resolved)
|
|
75
59
|
if (!pathIfExists) return false
|
|
76
|
-
const buffer = await
|
|
60
|
+
const buffer = await readFile(pathIfExists)
|
|
77
61
|
const patch = buffer.toString().trim()
|
|
78
62
|
return patch.length ? filename : false
|
|
79
63
|
}
|
|
@@ -97,9 +81,9 @@ class GitWorkflow {
|
|
|
97
81
|
async backupMergeStatus() {
|
|
98
82
|
debug('Backing up merge state...')
|
|
99
83
|
await Promise.all([
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
84
|
+
readFile(this.mergeHeadFilename).then(buffer => (this.mergeHeadBuffer = buffer)),
|
|
85
|
+
readFile(this.mergeModeFilename).then(buffer => (this.mergeModeBuffer = buffer)),
|
|
86
|
+
readFile(this.mergeMsgFilename).then(buffer => (this.mergeMsgBuffer = buffer))
|
|
103
87
|
])
|
|
104
88
|
debug('Done backing up merge state!')
|
|
105
89
|
}
|
|
@@ -111,9 +95,9 @@ class GitWorkflow {
|
|
|
111
95
|
debug('Restoring merge state...')
|
|
112
96
|
try {
|
|
113
97
|
await Promise.all([
|
|
114
|
-
this.mergeHeadBuffer &&
|
|
115
|
-
this.mergeModeBuffer &&
|
|
116
|
-
this.mergeMsgBuffer &&
|
|
98
|
+
this.mergeHeadBuffer && writeFile(this.mergeHeadFilename, this.mergeHeadBuffer),
|
|
99
|
+
this.mergeModeBuffer && writeFile(this.mergeModeFilename, this.mergeModeBuffer),
|
|
100
|
+
this.mergeMsgBuffer && writeFile(this.mergeMsgFilename, this.mergeMsgBuffer)
|
|
117
101
|
])
|
|
118
102
|
debug('Done restoring merge state!')
|
|
119
103
|
} catch (error) {
|
|
@@ -123,6 +107,18 @@ class GitWorkflow {
|
|
|
123
107
|
}
|
|
124
108
|
}
|
|
125
109
|
|
|
110
|
+
/**
|
|
111
|
+
* List and delete untracked files
|
|
112
|
+
*/
|
|
113
|
+
async cleanUntrackedFiles() {
|
|
114
|
+
const lsFiles = await this.execGit(['ls-files', '--others', '--exclude-standard'])
|
|
115
|
+
const untrackedFiles = lsFiles
|
|
116
|
+
.split('\n')
|
|
117
|
+
.filter(Boolean)
|
|
118
|
+
.map(file => path.resolve(this.gitDir, file))
|
|
119
|
+
await Promise.all(untrackedFiles.map(file => unlink(file)))
|
|
120
|
+
}
|
|
121
|
+
|
|
126
122
|
/**
|
|
127
123
|
* Create backup stashes, one of everything and one of only staged changes
|
|
128
124
|
* Staged files are left in the index for running tasks
|
|
@@ -135,6 +131,14 @@ class GitWorkflow {
|
|
|
135
131
|
// Manually check and backup if necessary
|
|
136
132
|
await this.backupMergeStatus()
|
|
137
133
|
|
|
134
|
+
// Get a list of unstaged deleted files, because certain bugs might cause them to reappear:
|
|
135
|
+
// - in git versions =< 2.13.0 the `--keep-index` flag resurrects deleted files
|
|
136
|
+
// - git stash can't infer RD or MD states correctly, and will lose the deletion
|
|
137
|
+
this.deletedFiles = (await this.execGit(['ls-files', '--deleted']))
|
|
138
|
+
.split('\n')
|
|
139
|
+
.filter(Boolean)
|
|
140
|
+
.map(file => path.resolve(this.gitDir, file))
|
|
141
|
+
|
|
138
142
|
// Save stash of entire original state, including unstaged and untracked changes.
|
|
139
143
|
// `--keep-index leaves only staged files on disk, for tasks.`
|
|
140
144
|
await this.execGit(['stash', 'save', '--include-untracked', '--keep-index', STASH])
|
|
@@ -144,7 +148,7 @@ class GitWorkflow {
|
|
|
144
148
|
|
|
145
149
|
// There is a bug in git =< 2.13.0 where `--keep-index` resurrects deleted files.
|
|
146
150
|
// These files should be listed and deleted before proceeding.
|
|
147
|
-
await cleanUntrackedFiles(
|
|
151
|
+
await this.cleanUntrackedFiles()
|
|
148
152
|
|
|
149
153
|
// Get a diff of unstaged changes by diffing the saved stash against what's left on disk.
|
|
150
154
|
await this.execGit([
|
|
@@ -238,6 +242,9 @@ class GitWorkflow {
|
|
|
238
242
|
ctx.gitRestoreUntrackedError = true
|
|
239
243
|
handleError(error, ctx)
|
|
240
244
|
}
|
|
245
|
+
|
|
246
|
+
// If stashing resurrected deleted files, clean them out
|
|
247
|
+
await Promise.all(this.deletedFiles.map(file => unlink(file)))
|
|
241
248
|
}
|
|
242
249
|
|
|
243
250
|
/**
|
|
@@ -251,6 +258,9 @@ class GitWorkflow {
|
|
|
251
258
|
await this.execGit(['stash', 'apply', '--quiet', '--index', backupStash])
|
|
252
259
|
debug('Done restoring original state!')
|
|
253
260
|
|
|
261
|
+
// If stashing resurrected deleted files, clean them out
|
|
262
|
+
await Promise.all(this.deletedFiles.map(file => unlink(file)))
|
|
263
|
+
|
|
254
264
|
// Restore meta information about ongoing git merge
|
|
255
265
|
await this.restoreMergeStatus()
|
|
256
266
|
} catch (error) {
|
|
@@ -278,4 +288,3 @@ class GitWorkflow {
|
|
|
278
288
|
}
|
|
279
289
|
|
|
280
290
|
module.exports = GitWorkflow
|
|
281
|
-
module.exports.cleanUntrackedFiles = cleanUntrackedFiles
|
package/lib/index.js
CHANGED
package/lib/resolveGitRepo.js
CHANGED
|
@@ -1,48 +1,52 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
3
|
const normalize = require('normalize-path')
|
|
4
|
+
const debugLog = require('debug')('lint-staged:resolveGitRepo')
|
|
5
|
+
const fs = require('fs')
|
|
4
6
|
const path = require('path')
|
|
7
|
+
const { promisify } = require('util')
|
|
5
8
|
|
|
6
9
|
const execGit = require('./execGit')
|
|
7
|
-
const {
|
|
10
|
+
const { readFile } = require('./file')
|
|
11
|
+
|
|
12
|
+
const fsLstat = promisify(fs.lstat)
|
|
8
13
|
|
|
9
14
|
/**
|
|
10
15
|
* Resolve path to the .git directory, with special handling for
|
|
11
|
-
* submodules
|
|
16
|
+
* submodules and worktrees
|
|
12
17
|
*/
|
|
13
|
-
const resolveGitConfigDir = async
|
|
18
|
+
const resolveGitConfigDir = async gitDir => {
|
|
14
19
|
const defaultDir = path.resolve(gitDir, '.git')
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
const
|
|
20
|
-
return
|
|
20
|
+
const stats = await fsLstat(defaultDir)
|
|
21
|
+
// If .git is a directory, use it
|
|
22
|
+
if (stats.isDirectory()) return defaultDir
|
|
23
|
+
// Otherwise .git is a file containing path to real location
|
|
24
|
+
const file = (await readFile(defaultDir)).toString()
|
|
25
|
+
return path.resolve(gitDir, file.replace(/^gitdir: /, '')).trim()
|
|
21
26
|
}
|
|
22
27
|
|
|
23
28
|
/**
|
|
24
29
|
* Resolve git directory and possible submodule paths
|
|
25
30
|
*/
|
|
26
|
-
|
|
31
|
+
const resolveGitRepo = async cwd => {
|
|
27
32
|
try {
|
|
33
|
+
debugLog('Resolving git repo from `%s`', cwd)
|
|
28
34
|
// git cli uses GIT_DIR to fast track its response however it might be set to a different path
|
|
29
35
|
// depending on where the caller initiated this from, hence clear GIT_DIR
|
|
36
|
+
debugLog('Deleting GIT_DIR from env with value `%s`', process.env.GIT_DIR)
|
|
30
37
|
delete process.env.GIT_DIR
|
|
31
38
|
|
|
32
|
-
|
|
33
|
-
const
|
|
39
|
+
const gitDir = normalize(await execGit(['rev-parse', '--show-toplevel'], { cwd }))
|
|
40
|
+
const gitConfigDir = normalize(await resolveGitConfigDir(gitDir))
|
|
34
41
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
['rev-parse', '--show-superproject-working-tree'],
|
|
38
|
-
options
|
|
39
|
-
)
|
|
42
|
+
debugLog('Resolved git directory to be `%s`', gitDir)
|
|
43
|
+
debugLog('Resolved git config directory to be `%s`', gitConfigDir)
|
|
40
44
|
|
|
41
|
-
|
|
42
|
-
const gitConfigDir = await resolveGitConfigDir({ gitDir, isSubmodule })
|
|
43
|
-
|
|
44
|
-
return { gitDir: normalize(gitDir), gitConfigDir, isSubmodule }
|
|
45
|
+
return { gitDir, gitConfigDir }
|
|
45
46
|
} catch (error) {
|
|
46
|
-
|
|
47
|
+
debugLog('Failed to resolve git repo with error:', error)
|
|
48
|
+
return { error, gitDir: null, gitConfigDir: null }
|
|
47
49
|
}
|
|
48
50
|
}
|
|
51
|
+
|
|
52
|
+
module.exports = resolveGitRepo
|
package/lib/runAll.js
CHANGED
|
@@ -15,6 +15,14 @@ const resolveGitRepo = require('./resolveGitRepo')
|
|
|
15
15
|
|
|
16
16
|
const debugLog = require('debug')('lint-staged:run')
|
|
17
17
|
|
|
18
|
+
const getRenderer = ({ debug, quiet }) => {
|
|
19
|
+
if (quiet) return 'silent'
|
|
20
|
+
// Better support for dumb terminals: https://en.wikipedia.org/wiki/Computer_terminal#Dumb_terminals
|
|
21
|
+
const isDumbTerminal = process.env.TERM === 'dumb'
|
|
22
|
+
if (debug || isDumbTerminal) return 'verbose'
|
|
23
|
+
return 'update'
|
|
24
|
+
}
|
|
25
|
+
|
|
18
26
|
/**
|
|
19
27
|
* Executes all tasks and either resolves or rejects the promise
|
|
20
28
|
*
|
|
@@ -47,11 +55,8 @@ module.exports = async function runAll(
|
|
|
47
55
|
) {
|
|
48
56
|
debugLog('Running all linter scripts')
|
|
49
57
|
|
|
50
|
-
const { gitDir, gitConfigDir
|
|
58
|
+
const { gitDir, gitConfigDir } = await resolveGitRepo(cwd)
|
|
51
59
|
if (!gitDir) throw new Error('Current directory is not a git directory!')
|
|
52
|
-
debugLog('Resolved git directory to be `%s`', gitDir)
|
|
53
|
-
debugLog('Resolved git config directory to be `%s`', gitConfigDir)
|
|
54
|
-
if (isSubmodule) debugLog('Current git directory is a submodule')
|
|
55
60
|
|
|
56
61
|
const files = await getStagedFiles({ cwd: gitDir })
|
|
57
62
|
if (!files) throw new Error('Unable to get staged files!')
|
|
@@ -74,7 +79,7 @@ module.exports = async function runAll(
|
|
|
74
79
|
const listrOptions = {
|
|
75
80
|
dateFormat: false,
|
|
76
81
|
exitOnError: false,
|
|
77
|
-
renderer: (
|
|
82
|
+
renderer: getRenderer({ debug, quiet })
|
|
78
83
|
}
|
|
79
84
|
|
|
80
85
|
const listrTasks = []
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lint-staged",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.7",
|
|
4
4
|
"description": "Lint files staged by git",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "https://github.com/okonet/lint-staged",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"funding": {
|
|
14
14
|
"url": "https://opencollective.com/lint-staged"
|
|
15
15
|
},
|
|
16
|
-
"bin": "./bin/lint-staged",
|
|
16
|
+
"bin": "./bin/lint-staged.js",
|
|
17
17
|
"main": "./lib/index.js",
|
|
18
18
|
"files": [
|
|
19
19
|
"bin",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"husky": {
|
|
32
32
|
"hooks": {
|
|
33
|
-
"pre-commit": "./bin/lint-staged"
|
|
33
|
+
"pre-commit": "./bin/lint-staged.js"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|