Skip to content

Commit 8b57f9a

Browse files
Release (#114)
From https://github.com/oxc-project/oxc/pull/ Co-authored-by: Boshen <Boshen@users.noreply.github.com>
1 parent 5cbf820 commit 8b57f9a

File tree

4 files changed

+46
-38
lines changed

4 files changed

+46
-38
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"husky": "^9.0.11",
6464
"lint-staged": "^15.2.5",
6565
"memfs": "^4.9.2",
66-
"oxlint": "^0.5.2",
66+
"oxlint": "^0.5.3",
6767
"prettier": "^3.3.1",
6868
"shelljs": "^0.8.5",
6969
"tsx": "^4.15.1",

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/rules-by-category.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ const restrictionRules = {
9595
'no-proto': 'off',
9696
'no-regex-spaces': 'off',
9797
'no-restricted-globals': 'off',
98+
'no-undefined': 'off',
9899
'no-unsafe-optional-chaining': 'off',
99100
'no-var': 'off',
100101
'no-void': 'off',
@@ -133,11 +134,13 @@ const styleRules = {
133134
'guard-for-in': 'off',
134135
'max-params': 'off',
135136
'no-continue': 'off',
137+
'no-multi-str': 'off',
136138
'no-script-url': 'off',
137139
'no-template-curly-in-string': 'off',
138140
'no-ternary': 'off',
139141
'prefer-exponentiation-operator': 'off',
140142
'sort-imports': 'off',
143+
'jest/consistent-test-it': 'off',
141144
'jest/max-expects': 'off',
142145
'jest/max-nested-describe': 'off',
143146
'jest/no-alias-methods': 'off',
@@ -346,6 +349,7 @@ const correctnessRules = {
346349
'unicorn/no-document-cookie': 'off',
347350
'unicorn/no-empty-file': 'off',
348351
'unicorn/no-invalid-remove-event-listener': 'off',
352+
'unicorn/no-negation-in-equality-check': 'off',
349353
'unicorn/no-new-array': 'off',
350354
'unicorn/no-single-promise-in-promise-methods': 'off',
351355
'unicorn/no-thenable': 'off',

src/rules-by-scope.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const eslintRules = {
5353
'no-irregular-whitespace': 'off',
5454
'no-iterator': 'off',
5555
'no-loss-of-precision': 'off',
56+
'no-multi-str': 'off',
5657
'no-new': 'off',
5758
'no-new-native-nonconstructor': 'off',
5859
'no-new-wrappers': 'off',
@@ -73,6 +74,7 @@ const eslintRules = {
7374
'no-ternary': 'off',
7475
'no-this-before-super': 'off',
7576
'no-undef': 'off',
77+
'no-undefined': 'off',
7678
'no-unreachable': 'off',
7779
'no-unsafe-finally': 'off',
7880
'no-unsafe-negation': 'off',
@@ -116,6 +118,7 @@ const importRules = {
116118
};
117119

118120
const jestRules = {
121+
'jest/consistent-test-it': 'off',
119122
'jest/expect-expect': 'off',
120123
'jest/max-expects': 'off',
121124
'jest/max-nested-describe': 'off',
@@ -331,6 +334,7 @@ const unicornRules = {
331334
'unicorn/no-lonely-if': 'off',
332335
'unicorn/no-magic-array-flat-depth': 'off',
333336
'unicorn/no-negated-condition': 'off',
337+
'unicorn/no-negation-in-equality-check': 'off',
334338
'unicorn/no-nested-ternary': 'off',
335339
'unicorn/no-new-array': 'off',
336340
'unicorn/no-new-buffer': 'off',

0 commit comments

Comments
 (0)