Skip to content

Commit 09609f6

Browse files
authored
Merge pull request #34 from yoriiis/feat/biome
Biome migration and Node.js upgrade
2 parents de31059 + 01bbb29 commit 09609f6

20 files changed

+1482
-3844
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
node-version: [16, 18, 20]
15+
node-version: [18, 20, 22]
1616
os: [ubuntu-latest, macos-latest]
1717
uses: yoriiis/actions/.github/workflows/test-and-build.yml@main
1818
with:

.github/workflows/lint.yml

+3
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ jobs:
1414
lint:
1515
uses: yoriiis/actions/.github/workflows/lint.yml@main
1616
with:
17+
node-version: 20
1718
stylelint-status: false
19+
eslint-status: false
20+
biome-status: true
1821
eslint-config: 'config/.eslintrc.cjs'

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/iron
1+
lts/jod

biome.json

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
4+
"files": {
5+
"ignoreUnknown": false,
6+
"ignore": ["**/node_modules", "**/coverage", "**/dist", "**/lib", "**/types"]
7+
},
8+
"formatter": {
9+
"enabled": true,
10+
"useEditorconfig": true,
11+
"formatWithErrors": false,
12+
"indentStyle": "tab",
13+
"indentWidth": 2,
14+
"lineEnding": "lf",
15+
"lineWidth": 100,
16+
"attributePosition": "auto",
17+
"bracketSpacing": true
18+
},
19+
"organizeImports": { "enabled": true },
20+
"linter": {
21+
"enabled": true,
22+
"rules": {
23+
"recommended": true,
24+
"complexity": { "noForEach": "off" },
25+
"suspicious": { "noExplicitAny": "off" }
26+
}
27+
},
28+
"javascript": {
29+
"formatter": {
30+
"jsxQuoteStyle": "double",
31+
"quoteProperties": "asNeeded",
32+
"trailingCommas": "none",
33+
"semicolons": "always",
34+
"arrowParentheses": "always",
35+
"bracketSameLine": true,
36+
"quoteStyle": "single",
37+
"attributePosition": "auto",
38+
"bracketSpacing": true
39+
}
40+
}
41+
}

config/.eslintrc.cjs

-43
This file was deleted.

config/jest.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
{
1010
diagnostics: {
1111
// Disable error reporting with import assertions
12-
ignoreCodes: ['TS1343', 'TS2821']
12+
ignoreCodes: ['TS2823']
1313
}
1414
}
1515
]

config/prettier.config.cjs

-27
This file was deleted.

example/svgo.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import crypto from 'crypto';
1+
import crypto from 'node:crypto';
22

33
export default {
44
multipass: true,

example/webpack.config.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import path from 'path';
2-
import { fileURLToPath } from 'url';
1+
import path from 'node:path';
2+
import { fileURLToPath } from 'node:url';
33
import TerserJSPlugin from 'terser-webpack-plugin';
4-
import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
54
import SvgChunkWebpackPlugin from '../lib/index.js';
65

76
const __filename = fileURLToPath(import.meta.url);
87
const __dirname = path.dirname(__filename);
98

10-
export default (env, argv) => {
9+
export default (_env, argv) => {
1110
const isProduction = argv.mode === 'production';
1211

1312
return {
@@ -75,8 +74,7 @@ export default (env, argv) => {
7574
minimizer: [
7675
new TerserJSPlugin({
7776
extractComments: false
78-
}),
79-
new CssMinimizerPlugin()
77+
})
8078
],
8179
chunkIds: 'deterministic', // or 'named'
8280
removeAvailableModules: true,

0 commit comments

Comments
 (0)