We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bc5f9c commit cbebe01Copy full SHA for cbebe01
lib/rules/headers/dl.js
@@ -367,7 +367,9 @@ export async function check(sr, done) {
367
const editors = dts.Editor.dd;
368
// 'missingElement' is array of HTML elements without editorId
369
const missingElement = editors.filter(
370
- editor => !editor.dataset.editorId
+ editor =>
371
+ !editor.dataset.editorId &&
372
+ !editor.textContent.match(/(working|interest) group/i)
373
);
374
if (missingElement.length) {
375
sr.error(editorError, 'editor-missing-id', {
0 commit comments