Remove ESLint and complete migration to oxlint (#6584)

* Remove ESLint and migrate fully to oxlint

* Add release notes for PR #6584

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Matiss Janis Aboltins
2026-01-07 00:19:03 +01:00
committed by GitHub
parent 3966778de3
commit 9e7a4cde36
20 changed files with 113 additions and 227 deletions

View File

@@ -1,8 +1,9 @@
#!/usr/bin/env node
import { Octokit } from '@octokit/rest';
import fs from 'fs';
import { Octokit } from '@octokit/rest';
const token = process.env.GITHUB_TOKEN;
const repo = process.env.GITHUB_REPOSITORY;
const issueNumber = process.env.GITHUB_EVENT_ISSUE_NUMBER;

View File

@@ -1,8 +1,9 @@
#!/usr/bin/env node
import { Octokit } from '@octokit/rest';
import fs from 'fs';
import { Octokit } from '@octokit/rest';
const token = process.env.GITHUB_TOKEN;
const repo = process.env.GITHUB_REPOSITORY;
const issueNumber = process.env.GITHUB_EVENT_ISSUE_NUMBER;

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env node
const https = require('https');
const fs = require('fs');
const https = require('https');
const commentBody = process.env.GITHUB_EVENT_COMMENT_BODY;
const prDetailsJson = process.env.PR_DETAILS;

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env node
const https = require('https');
const fs = require('fs');
const https = require('https');
const commentBody = process.env.GITHUB_EVENT_COMMENT_BODY;
const prDetailsJson = process.env.PR_DETAILS;

View File

@@ -1,8 +1,9 @@
#!/usr/bin/env node
import { Octokit } from '@octokit/rest';
import fs from 'fs';
import { Octokit } from '@octokit/rest';
const token = process.env.GITHUB_TOKEN;
const repo = process.env.GITHUB_REPOSITORY;
const issueNumber = process.env.GITHUB_EVENT_ISSUE_NUMBER;

View File

@@ -4,8 +4,8 @@
// 1. Identify the migrations in packages/loot-core/migrations/* on `master` and HEAD
// 2. Make sure that any new migrations on HEAD are dated after the latest migration on `master`.
const path = require('path');
const { spawnSync } = require('child_process');
const path = require('path');
const migrationsDir = path.join(
__dirname,