|
26 | 26 | description: 'Validate Azure Pipelines config against the schema provided by Microsoft'
|
27 | 27 | entry: check-jsonschema --builtin-schema vendor.azure-pipelines --data-transform azure-pipelines
|
28 | 28 | language: python
|
29 |
| - files: ^(\.)?azure-pipelines.(yml|yaml)$ |
| 29 | + files: ^(\.)?azure-pipelines\.(yml|yaml)$ |
30 | 30 | types: [yaml]
|
31 | 31 |
|
32 | 32 | # this hook is autogenerated from a script
|
|
76 | 76 | description: 'Validate Dependabot Config (v2) against the schema provided by SchemaStore'
|
77 | 77 | entry: check-jsonschema --builtin-schema vendor.dependabot
|
78 | 78 | language: python
|
79 |
| - files: ^\.github/dependabot.(yml|yaml)$ |
| 79 | + files: ^\.github/dependabot\.(yml|yaml)$ |
80 | 80 | types: [yaml]
|
81 | 81 |
|
82 | 82 | # this hook is autogenerated from a script
|
|
100 | 100 | language: python
|
101 | 101 | files: >
|
102 | 102 | (?x)^(
|
103 |
| - action.(yml|yaml)| |
104 |
| - \.github/actions/(.+/)?action.(yml|yaml) |
| 103 | + action\.(yml|yaml)| |
| 104 | + \.github/actions/(.+/)?action\.(yml|yaml) |
105 | 105 | )$
|
106 | 106 | types: [yaml]
|
107 | 107 |
|
|
124 | 124 | description: 'Validate GitLab CI config against the schema provided by SchemaStore'
|
125 | 125 | entry: check-jsonschema --builtin-schema vendor.gitlab-ci --data-transform gitlab-ci
|
126 | 126 | language: python
|
127 |
| - files: ^.*\.gitlab-ci.yml$ |
| 127 | + files: ^.*\.gitlab-ci\.yml$ |
128 | 128 | types: [yaml]
|
129 | 129 |
|
130 | 130 | # this hook is autogenerated from a script
|
|
135 | 135 | description: 'Validate ReadTheDocs config against the schema provided by ReadTheDocs'
|
136 | 136 | entry: check-jsonschema --builtin-schema vendor.readthedocs
|
137 | 137 | language: python
|
138 |
| - files: ^\.readthedocs.(yml|yaml)$ |
| 138 | + files: ^\.readthedocs\.(yml|yaml)$ |
139 | 139 | types: [yaml]
|
140 | 140 |
|
141 | 141 | # this hook is autogenerated from a script
|
|
161 | 161 | description: 'Validate Travis Config against the schema provided by SchemaStore'
|
162 | 162 | entry: check-jsonschema --builtin-schema vendor.travis
|
163 | 163 | language: python
|
164 |
| - files: ^\.travis.(yml|yaml)$ |
| 164 | + files: ^\.travis\.(yml|yaml)$ |
165 | 165 | types: [yaml]
|
0 commit comments