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 d14841c commit f07e3c5Copy full SHA for f07e3c5
.github/validate-pr/index.js
@@ -90,7 +90,11 @@ async function run() {
90
if (file.startsWith('specification/_spec_utils')) continue
91
if (file.startsWith('specification/_doc_ids')) continue
92
if (file.startsWith('specification/_json_spec')) continue
93
+ if (file.startsWith('specification/node_modules')) continue
94
if (file === 'specification/tsconfig.json') continue
95
+ if (file === 'specification/eslint.config.js') continue
96
+ if (file === 'specification/package.json') continue
97
+ if (file === 'specification/package-lock.json') continue
98
if (getApi(file).endsWith('_types')) {
99
const apis = specification.endpoints
100
.filter(endpoint => endpoint.name.split('.').filter(s => !privateNames.includes(s))[0] === getApi(file).split('.')[0])
0 commit comments