-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: update dependencies * chore: fix ESLint errors
- Loading branch information
1 parent
c485fc0
commit 4b01d0f
Showing
5 changed files
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`pre-commit calls lint-staged CLI with default args 1`] = `lint-staged --config ./src/config/lintstagedrc.js`; | ||
exports[`pre-commit calls lint-staged CLI with default args: pre-commit scriptOne 1`] = `lint-staged --config ./src/config/lintstagedrc.js`; | ||
|
||
exports[`pre-commit calls lint-staged CLI with default args 2`] = `npm run validate`; | ||
exports[`pre-commit calls lint-staged CLI with default args: pre-commit scriptTwo 1`] = `npm run validate`; | ||
|
||
exports[`pre-commit does not use built-in config with .lintstagedrc file 1`] = `lint-staged`; | ||
exports[`pre-commit does not use built-in config with .lintstagedrc file: pre-commit scriptOne 1`] = `lint-staged`; | ||
|
||
exports[`pre-commit does not use built-in config with .lintstagedrc file 2`] = `npm run validate`; | ||
exports[`pre-commit does not use built-in config with .lintstagedrc file: pre-commit scriptTwo 1`] = `npm run validate`; | ||
|
||
exports[`pre-commit does not use built-in config with --config 1`] = `lint-staged --config ./custom-config.js`; | ||
exports[`pre-commit does not use built-in config with --config: pre-commit scriptOne 1`] = `lint-staged --config ./custom-config.js`; | ||
|
||
exports[`pre-commit does not use built-in config with --config 2`] = `npm run validate`; | ||
exports[`pre-commit does not use built-in config with --config: pre-commit scriptTwo 1`] = `npm run validate`; | ||
|
||
exports[`pre-commit does not use built-in config with lint-staged pkg prop 1`] = `lint-staged`; | ||
exports[`pre-commit does not use built-in config with lint-staged pkg prop: pre-commit scriptOne 1`] = `lint-staged`; | ||
|
||
exports[`pre-commit does not use built-in config with lint-staged pkg prop 2`] = `npm run validate`; | ||
exports[`pre-commit does not use built-in config with lint-staged pkg prop: pre-commit scriptTwo 1`] = `npm run validate`; | ||
|
||
exports[`pre-commit does not use built-in config with lint-staged.config.js file 1`] = `lint-staged`; | ||
exports[`pre-commit does not use built-in config with lint-staged.config.js file: pre-commit scriptOne 1`] = `lint-staged`; | ||
|
||
exports[`pre-commit does not use built-in config with lint-staged.config.js file 2`] = `npm run validate`; | ||
exports[`pre-commit does not use built-in config with lint-staged.config.js file: pre-commit scriptTwo 1`] = `npm run validate`; | ||
|
||
exports[`pre-commit forwards args 1`] = `lint-staged --config ./src/config/lintstagedrc.js --verbose`; | ||
exports[`pre-commit forwards args: pre-commit scriptOne 1`] = `lint-staged --config ./src/config/lintstagedrc.js --verbose`; | ||
|
||
exports[`pre-commit forwards args 2`] = `npm run validate`; | ||
exports[`pre-commit forwards args: pre-commit scriptTwo 1`] = `npm run validate`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters