forked from commercetools/merchant-center-application-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlint-staged.config.js
35 lines (35 loc) · 1.67 KB
/
lint-staged.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module.exports = {
'*.md': ['prettier --write --parser markdown'],
'*.yaml': ['prettier --write --parser yaml'],
'*.graphql': ['prettier --write --parser graphql'],
'*.mc.graphql': () => 'yarn generate-types:mc',
'*.ctp.graphql': () => 'yarn generate-types:ctp',
'*.settings.graphql': () => 'yarn generate-types:settings',
'*.proxy.graphql': () => 'yarn generate-types:proxy',
'*.{js,ts,tsx}': [
'prettier --write',
// NOTE: apparently if you pass some argument that is not a flag AFTER the `reporters`
// flag, jest does not seem correctly parse the arguments.
//
// No tests found related to files changed since last commit.
// Run Jest without `-o` or with `--all` to run all tests.
// Error: An error occurred while adding the reporter at path "/path/to/file".Reporter is not a constructor
//
// For that reason, we move the `--onlyChanged` flag next to it.
'yarn lint:js --reporters=jest-silent-reporter --onlyChanged',
],
'*.css': [
'prettier --write --parser css',
// NOTE: apparently if you pass some argument that is not a flag AFTER the `reporters`
// flag, jest does not seem correctly parse the arguments.
//
// No tests found related to files changed since last commit.
// Run Jest without `-o` or with `--all` to run all tests.
// Error: An error occurred while adding the reporter at path "/path/to/file".Reporter is not a constructor
//
// For that reason, we move the `--onlyChanged` flag next to it.
'yarn lint:css --reporters=jest-silent-reporter --onlyChanged',
],
'packages/application-config/schema.json': () =>
'yarn --cwd packages/application-config build:schema',
};