Skip to content

Commit

Permalink
Release (#114)
Browse files Browse the repository at this point in the history
From https://github.com/oxc-project/oxc/pull/

Co-authored-by: Boshen <Boshen@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and Boshen authored Jul 7, 2024
1 parent 5cbf820 commit 8b57f9a
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 38 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"memfs": "^4.9.2",
"oxlint": "^0.5.2",
"oxlint": "^0.5.3",
"prettier": "^3.3.1",
"shelljs": "^0.8.5",
"tsx": "^4.15.1",
Expand Down
74 changes: 37 additions & 37 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/rules-by-category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ const restrictionRules = {
'no-proto': 'off',
'no-regex-spaces': 'off',
'no-restricted-globals': 'off',
'no-undefined': 'off',
'no-unsafe-optional-chaining': 'off',
'no-var': 'off',
'no-void': 'off',
Expand Down Expand Up @@ -133,11 +134,13 @@ const styleRules = {
'guard-for-in': 'off',
'max-params': 'off',
'no-continue': 'off',
'no-multi-str': 'off',
'no-script-url': 'off',
'no-template-curly-in-string': 'off',
'no-ternary': 'off',
'prefer-exponentiation-operator': 'off',
'sort-imports': 'off',
'jest/consistent-test-it': 'off',
'jest/max-expects': 'off',
'jest/max-nested-describe': 'off',
'jest/no-alias-methods': 'off',
Expand Down Expand Up @@ -346,6 +349,7 @@ const correctnessRules = {
'unicorn/no-document-cookie': 'off',
'unicorn/no-empty-file': 'off',
'unicorn/no-invalid-remove-event-listener': 'off',
'unicorn/no-negation-in-equality-check': 'off',
'unicorn/no-new-array': 'off',
'unicorn/no-single-promise-in-promise-methods': 'off',
'unicorn/no-thenable': 'off',
Expand Down
4 changes: 4 additions & 0 deletions src/rules-by-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const eslintRules = {
'no-irregular-whitespace': 'off',
'no-iterator': 'off',
'no-loss-of-precision': 'off',
'no-multi-str': 'off',
'no-new': 'off',
'no-new-native-nonconstructor': 'off',
'no-new-wrappers': 'off',
Expand All @@ -73,6 +74,7 @@ const eslintRules = {
'no-ternary': 'off',
'no-this-before-super': 'off',
'no-undef': 'off',
'no-undefined': 'off',
'no-unreachable': 'off',
'no-unsafe-finally': 'off',
'no-unsafe-negation': 'off',
Expand Down Expand Up @@ -116,6 +118,7 @@ const importRules = {
};

const jestRules = {
'jest/consistent-test-it': 'off',
'jest/expect-expect': 'off',
'jest/max-expects': 'off',
'jest/max-nested-describe': 'off',
Expand Down Expand Up @@ -331,6 +334,7 @@ const unicornRules = {
'unicorn/no-lonely-if': 'off',
'unicorn/no-magic-array-flat-depth': 'off',
'unicorn/no-negated-condition': 'off',
'unicorn/no-negation-in-equality-check': 'off',
'unicorn/no-nested-ternary': 'off',
'unicorn/no-new-array': 'off',
'unicorn/no-new-buffer': 'off',
Expand Down

0 comments on commit 8b57f9a

Please sign in to comment.