You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// For each linterIgnore directory, walk the files in the directory and add
255
+
// to the ignore list.
256
+
constignoreMarkdownFilesAbsPath=newSet(
257
+
automatedIgnorePaths
258
+
.filter((p)=>{
259
+
constexists=existsSync(p)
260
+
if(!exists){
261
+
console.warn(
262
+
`WARNING: Ignored path ${p} defined in an automation pipeline does not exist. This may be expected, but if not, remove the defined path from the pipeline config.`
263
+
)
264
+
}
265
+
returnexists
266
+
})
267
+
.map((p)=>
268
+
walk(p,{
269
+
includeBasePath: true,
270
+
globs: ['**/*.md'],
271
+
})
272
+
)
273
+
.flat()
274
+
)
275
+
276
+
// Difference between contentMarkdownAbsPaths & automatedIgnorePaths
0 commit comments