Skip to content

Commit b616c13

Browse files
authoredDec 9, 2024··
Merge pull request #19 from pixijs/feat/eslint-v9
feat!: upgrade to eslint v9
2 parents 2a93359 + 3802cc9 commit b616c13

File tree

9 files changed

+1953
-1300
lines changed

9 files changed

+1953
-1300
lines changed
 

‎.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v3
16-
- name: Use Node.js 16.x
17-
uses: actions/setup-node@v3
16+
- name: Use Node.js 20.x
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: 16
19+
node-version: 20
2020
- name: Install npm
2121
run: npm install -g npm@8
2222
- name: Install Dependencies

‎eslint.config.mjs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import config from './lib/configs/eslint.config.mjs';
2+
3+
export default config;

‎lib/configs/eslint.config.mjs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import config from '@pixi/eslint-config';
2+
3+
export default config;

‎lib/configs/eslint.json

-3
This file was deleted.

‎lib/index.mjs

+6-12
Original file line numberDiff line numberDiff line change
@@ -122,34 +122,29 @@ const fixGlobalTypes = async () =>
122122
/** Run ESlint with built-in config */
123123
const lint = async (additionalArgs = []) =>
124124
{
125-
const eslintrcJson = path.join(process.cwd(), '.eslintrc.json');
126-
const eslintrcJs = path.join(process.cwd(), '.eslintrc.js');
127-
const eslintrc = path.join(process.cwd(), '.eslintrc');
125+
const eslintMJS = path.join(process.cwd(), 'eslint.config.mjs');
126+
const eslintJS = path.join(process.cwd(), 'eslint.config.js');
128127
const isDefined = 'eslintConfig' in packageInfo
129-
|| await pathExists(eslintrcJson)
130-
|| await pathExists(eslintrcJs)
131-
|| await pathExists(eslintrc);
128+
|| await pathExists(eslintMJS)
129+
|| await pathExists(eslintJS);
132130

133131
if (!isDefined)
134132
{
135133
// We copy this file to the project if one doesn't exist
136134
// because using ESLint's -c parameter turns off eslintrc
137135
// which means that, tests, etc. won't be linted with a local .eslintrc
138-
await promises.copyFile(path.join(__dirname, 'configs/eslint.json'), eslintrcJson);
136+
await promises.copyFile(path.join(__dirname, 'configs/eslint.config.mjs'), eslintMJS);
139137
}
140138

141139
const cleanup = async () =>
142140
{
143141
if (!isDefined)
144142
{
145-
await promises.unlink(eslintrcJson);
143+
await promises.unlink(eslintMJS);
146144
}
147145
};
148146

149147
await spawn('eslint', [
150-
'--ext', '.ts',
151-
'--ext', '.js',
152-
'--ext', '.mjs',
153148
'--no-error-on-unmatched-pattern',
154149
...extensionConfig.lint,
155150
...additionalArgs,
@@ -320,7 +315,6 @@ const runCommand = async (command, additionalArgs) =>
320315
}
321316
case Command.Watch: bundle('-w'); break;
322317
default: {
323-
// eslint-disable-next-line no-console
324318
console.error(chalk.red(`${prefix} Error: Unknown command "${command}". `
325319
+ `Only the following comands are supported: "${Object.values(Command).join('", "')}"\n`));
326320
process.exit(1);

‎lib/utils/pathExists.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ export const pathExists = async (path) =>
99

1010
return true;
1111
}
12-
catch (e)
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
13+
catch (_e)
1314
{
1415
return false;
1516
}

‎package-lock.json

+1,927-1,277
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
},
1010
"exports": {
1111
"./tsconfig": "./lib/configs/tsconfig.json",
12-
"./eslint": "./lib/configs/eslint.json",
12+
"./eslint": "./lib/configs/eslint.config.mjs",
1313
"./jest": "./lib/configs/jest.json"
1414
},
1515
"scripts": {
1616
"test": "npm run lint && cd test && npm i && npm test",
17-
"lint": "eslint --ext .mjs -c lib/configs/eslint.json lib --max-warnings 0",
17+
"lint": "eslint -c lib/configs/eslint.config.mjs lib --max-warnings 0",
1818
"lint:fix": "npm run lint -- --fix",
1919
"preversion": "npm test",
2020
"postversion": "npm publish && git push && git push --tags"
@@ -38,7 +38,7 @@
3838
"homepage": "https://github.com/pixijs/extension-scripts#readme",
3939
"dependencies": {
4040
"@kayahr/jest-electron-runner": "^29.3.0",
41-
"@pixi/eslint-config": "^5.1.0",
41+
"@pixi/eslint-config": "^6.0.0",
4242
"@pixi/rollup-plugin-rename-node-modules": "^2.0.0",
4343
"@pixi/webdoc-template": "^1.5.5",
4444
"@rollup/plugin-commonjs": "^24.0.0",
@@ -49,7 +49,7 @@
4949
"@webdoc/cli": "^2.2.0",
5050
"chalk": "^5.0.0",
5151
"clean-package": "^2.2.0",
52-
"eslint": "^8.30.0",
52+
"eslint": "^9.16.0",
5353
"gh-pages": "^4.0.0",
5454
"glob": "^10.3.10",
5555
"http-server": "^14.1.1",

‎test/tsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compilerOptions": {
3+
"skipLibCheck": true
4+
}
5+
}

0 commit comments

Comments
 (0)
Please sign in to comment.