Skip to content

Commit c37bc37

Browse files
authored
release: v0.16.6 (#389)
1 parent 251058e commit c37bc37

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": "0.16.5",
3+
"version": "0.16.6",
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": "^15.2.10",
6969
"memfs": "^4.14.0",
70-
"oxlint": "^0.16.5",
70+
"oxlint": "^0.16.6",
7171
"prettier": "^3.3.3",
7272
"scule": "^1.3.0",
7373
"shelljs": "^0.9.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
@@ -281,6 +281,9 @@ exports[`contains all the oxlint rules 1`] = `
281281
"import/first": [
282282
0,
283283
],
284+
"import/group-exports": [
285+
0,
286+
],
284287
"import/max-dependencies": [
285288
0,
286289
],

src/generated/rules-by-category.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ const styleRules: Record<string, 'off'> = {
126126
yoda: 'off',
127127
'import/exports-last': 'off',
128128
'import/first': 'off',
129+
'import/group-exports': 'off',
129130
'import/no-anonymous-default-export': 'off',
130131
'import/no-mutable-exports': 'off',
131132
'import/no-named-default': 'off',

src/generated/rules-by-scope.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ const importRules: Record<string, 'off'> = {
145145
'import/default': 'off',
146146
'import/exports-last': 'off',
147147
'import/first': 'off',
148+
'import/group-exports': 'off',
148149
'import/no-empty-named-blocks': 'off',
149150
'import/no-anonymous-default-export': 'off',
150151
'import/no-absolute-path': 'off',

0 commit comments

Comments
 (0)