Skip to content

Commit 339ef29

Browse files
authored
release: v1.2.0 (#439)
1 parent 6c3aa9b commit 339ef29

File tree

5 files changed

+44
-39
lines changed

5 files changed

+44
-39
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-oxlint",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Turn off all rules already supported by oxlint",
55
"type": "module",
66
"types": "./dist/index.d.ts",
@@ -67,7 +67,7 @@
6767
"jiti": "^2.4.2",
6868
"lint-staged": "^16.0.0",
6969
"memfs": "^4.14.0",
70-
"oxlint": "^1.1.0",
70+
"oxlint": "^1.2.0",
7171
"prettier": "^3.3.3",
7272
"scule": "^1.3.0",
7373
"shelljs": "^0.10.0",

pnpm-lock.yaml

Lines changed: 37 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/__snapshots__/configs.spec.ts.snap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,9 @@ exports[`contains all the oxlint rules 1`] = `
288288
"import/exports-last": [
289289
0,
290290
],
291+
"import/extensions": [
292+
0,
293+
],
291294
"import/first": [
292295
0,
293296
],

src/generated/rules-by-category.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ const restrictionRules: Record<string, 'off'> = {
320320
'no-var': 'off',
321321
'no-void': 'off',
322322
'unicode-bom': 'off',
323+
'import/extensions': 'off',
323324
'import/no-amd': 'off',
324325
'import/no-commonjs': 'off',
325326
'import/no-cycle': 'off',

src/generated/rules-by-scope.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ const importRules: Record<string, 'off'> = {
148148
'import/consistent-type-specifier-style': 'off',
149149
'import/default': 'off',
150150
'import/exports-last': 'off',
151+
'import/extensions': 'off',
151152
'import/first': 'off',
152153
'import/group-exports': 'off',
153154
'import/no-unassigned-import': 'off',

0 commit comments

Comments
 (0)