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
1 change: 0 additions & 1 deletion apps/oxlint/src-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ export function defineRule(rule: Rule): Rule {
// and methods on another object which is its prototype.
defineProperty(context, 'id', { value: eslintContext.id });
defineProperty(context, 'options', { value: eslintContext.options });
// oxlint-disable-next-line typescript/unbound-method
defineProperty(context, 'report', { value: eslintContext.report });
setPrototypeOf(context, getPrototypeOf(eslintContext));

Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/tests/test-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export async function writeToFixtureFile(file: string, content: string, workspac
// oxlint-disable eslint/no-await-in-loop -- simulate key presses
await commands.executeCommand('type', { text: char });
await sleep(50);
// oxlint-enable
// oxlint-enable eslint/no-await-in-loop
}
}

Expand Down
1 change: 0 additions & 1 deletion napi/parser/test/typescript-make-units-from-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ function getErrorFiles(filePath, options) {
* @param {string} code - Content of the test file
* @returns {Object} TestCaseContent object
*/
// oxlint-disable-next-line jest/no-export
export function makeUnitsFromTest(filePath, code) {
const currentFileOptions = new Map();
let currentFileName = null;
Expand Down
Loading