eslint-plugin-oxlint
Advanced tools
Comparing version 0.9.2 to 0.9.3
{ | ||
"name": "eslint-plugin-oxlint", | ||
"version": "0.9.2", | ||
"version": "0.9.3", | ||
"description": "Turn off all rules already supported by oxlint", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -81,2 +81,3 @@ // These rules are automatically generated by scripts/generate-rules.ts | ||
'import/no-default-export': 'off', | ||
'import/no-dynamic-require': 'off', | ||
'import/no-webpack-loader-syntax': 'off', | ||
@@ -86,2 +87,4 @@ 'jsdoc/check-access': 'off', | ||
'promise/avoid-new': 'off', | ||
'promise/catch-or-return': 'off', | ||
'promise/spec-only': 'off', | ||
'react/button-has-type': 'off', | ||
@@ -114,2 +117,3 @@ 'react/no-danger': 'off', | ||
'no-multi-str': 'off', | ||
'no-new-func': 'off', | ||
'no-script-url': 'off', | ||
@@ -363,2 +367,3 @@ 'no-template-curly-in-string': 'off', | ||
'jsx-a11y/scope': 'off', | ||
'node/no-exports-assign': 'off', | ||
'promise/no-new-statics': 'off', | ||
@@ -400,2 +405,3 @@ 'react/jsx-boolean-value': 'off', | ||
'unicorn/prefer-string-trim-start-end': 'off', | ||
'unicorn/prefer-type-error': 'off', | ||
'unicorn/require-number-to-fixed-digits-argument': 'off', | ||
@@ -407,2 +413,3 @@ 'unicorn/switch-case-braces': 'off', | ||
'vitest/prefer-to-be-falsy': 'off', | ||
'vitest/prefer-to-be-object': 'off', | ||
'vitest/prefer-to-be-truthy': 'off', | ||
@@ -423,2 +430,3 @@ }; | ||
'jsx-a11y/tabindex-no-positive': 'off', | ||
'react/self-closing-comp': 'off', | ||
'unicorn/consistent-function-scoping': 'off', | ||
@@ -428,3 +436,2 @@ 'unicorn/prefer-modern-math-apis': 'off', | ||
'unicorn/prefer-structured-clone': 'off', | ||
'unicorn/prefer-type-error': 'off', | ||
}; | ||
@@ -431,0 +438,0 @@ |
@@ -60,2 +60,3 @@ // These rules are automatically generated by scripts/generate-rules.ts | ||
'no-new': 'off', | ||
'no-new-func': 'off', | ||
'no-new-native-nonconstructor': 'off', | ||
@@ -119,2 +120,3 @@ 'no-new-wrappers': 'off', | ||
'import/no-duplicates': 'off', | ||
'import/no-dynamic-require': 'off', | ||
'import/no-named-as-default': 'off', | ||
@@ -252,4 +254,9 @@ 'import/no-named-as-default-member': 'off', | ||
const nodeRules = { | ||
'node/no-exports-assign': 'off', | ||
}; | ||
const promiseRules = { | ||
'promise/avoid-new': 'off', | ||
'promise/catch-or-return': 'off', | ||
'promise/no-new-statics': 'off', | ||
@@ -259,2 +266,3 @@ 'promise/no-return-in-finally': 'off', | ||
'promise/prefer-await-to-then': 'off', | ||
'promise/spec-only': 'off', | ||
'promise/valid-params': 'off', | ||
@@ -289,2 +297,3 @@ }; | ||
'react/rules-of-hooks': 'off', | ||
'react/self-closing-comp': 'off', | ||
'react/void-dom-elements-no-children': 'off', | ||
@@ -437,2 +446,3 @@ }; | ||
'vitest/prefer-to-be-falsy': 'off', | ||
'vitest/prefer-to-be-object': 'off', | ||
'vitest/prefer-to-be-truthy': 'off', | ||
@@ -449,2 +459,3 @@ 'vitest/require-local-test-context-for-concurrent-snapshots': 'off', | ||
nextjsRules, | ||
nodeRules, | ||
promiseRules, | ||
@@ -451,0 +462,0 @@ reactRules, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
143875
3348