Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions integration_test/__snapshots__/pupeeteer.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,6 @@ exports[`puppeteer > puppeteer 1`] = `
},
},
"warnings": [
"ignore allow list is currently not supported: !.vscode/extensions.json",
"ignore allow list is currently not supported: !.vscode/*.template.json",
"unsupported rule, but in development: import/named",
"unsupported rule: prettier/prettier",
"unsupported rule: spaced-comment",
Expand Down Expand Up @@ -689,8 +687,6 @@ exports[`puppeteer --type-aware > puppeteer--type-aware 1`] = `
},
},
"warnings": [
"ignore allow list is currently not supported: !.vscode/extensions.json",
"ignore allow list is currently not supported: !.vscode/*.template.json",
"unsupported rule, but in development: import/named",
"unsupported rule: prettier/prettier",
"unsupported rule: spaced-comment",
Expand Down Expand Up @@ -1033,8 +1029,6 @@ exports[`puppeteer merge > puppeteer--merge 1`] = `
},
},
"warnings": [
"ignore allow list is currently not supported: !.vscode/extensions.json",
"ignore allow list is currently not supported: !.vscode/*.template.json",
"unsupported rule, but in development: import/named",
"unsupported rule: prettier/prettier",
"unsupported rule: spaced-comment",
Expand Down
3 changes: 0 additions & 3 deletions integration_test/__snapshots__/vscode.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@ exports[`vscode > vscode 1`] = `
},
},
"warnings": [
"ignore allow list is currently not supported: !.vscode",
"unsupported rule: constructor-super",
"unsupported rule: prefer-const",
"unsupported rule: no-buffer-constructor",
Expand Down Expand Up @@ -641,7 +640,6 @@ exports[`vscode --type-aware > vscode--type-aware 1`] = `
},
},
"warnings": [
"ignore allow list is currently not supported: !.vscode",
"unsupported rule: constructor-super",
"unsupported rule: prefer-const",
"unsupported rule: no-buffer-constructor",
Expand Down Expand Up @@ -975,7 +973,6 @@ exports[`vscode merge > vscode--merge 1`] = `
},
},
"warnings": [
"ignore allow list is currently not supported: !.vscode",
"unsupported rule: constructor-super",
"unsupported rule: prefer-const",
"unsupported rule: no-buffer-constructor",
Expand Down
10 changes: 0 additions & 10 deletions src/ignorePatterns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,4 @@ export const transformIgnorePatterns = (
targetConfig.ignorePatterns.push(ignores);
}
}

// see https://github.com/oxc-project/oxc/issues/8842
eslintConfig.ignores
.filter((ignore) => ignore.startsWith('!'))
.forEach((ignore) => {
options?.reporter !== undefined &&
options.reporter(
`ignore allow list is currently not supported: ${ignore}`
);
});
};