File tree Expand file tree Collapse file tree 5 files changed +51
-41
lines changed Expand file tree Collapse file tree 5 files changed +51
-41
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " eslint-plugin-oxlint" ,
3- "version" : " 0.15.8 " ,
3+ "version" : " 0.15.9 " ,
44 "description" : " Turn off all rules already supported by oxlint" ,
55 "type" : " module" ,
66 "types" : " ./dist/index.d.ts" ,
6666 "husky" : " ^9.1.6" ,
6767 "lint-staged" : " ^15.2.10" ,
6868 "memfs" : " ^4.14.0" ,
69- "oxlint" : " ^0.15.8 " ,
69+ "oxlint" : " ^0.15.9 " ,
7070 "prettier" : " ^3.3.3" ,
7171 "scule" : " ^1.3.0" ,
7272 "shelljs" : " ^0.8.5" ,
Original file line number Diff line number Diff line change @@ -957,6 +957,9 @@ exports[`contains all the oxlint rules 1`] = `
957957 " no-unused-vars" : [
958958 0 ,
959959 ],
960+ " no-useless-call" : [
961+ 0 ,
962+ ],
960963 " no-useless-catch" : [
961964 0 ,
962965 ],
@@ -1004,6 +1007,9 @@ exports[`contains all the oxlint rules 1`] = `
10041007 " prefer-object-has-own" : [
10051008 0 ,
10061009 ],
1010+ " prefer-object-spread" : [
1011+ 0 ,
1012+ ],
10071013 " prefer-promise-reject-errors" : [
10081014 0 ,
10091015 {
Original file line number Diff line number Diff line change @@ -167,10 +167,11 @@ const styleRules = {
167167 'no-template-curly-in-string' : 'off' ,
168168 'no-ternary' : 'off' ,
169169 'prefer-promise-reject-errors' : 'off' ,
170- 'prefer-rest-params' : 'off' ,
171170 'prefer-exponentiation-operator' : 'off' ,
172171 'prefer-numeric-literals' : 'off' ,
173172 'prefer-object-has-own' : 'off' ,
173+ 'prefer-object-spread' : 'off' ,
174+ 'prefer-rest-params' : 'off' ,
174175 'prefer-spread' : 'off' ,
175176 'sort-imports' : 'off' ,
176177 'sort-keys' : 'off' ,
@@ -469,6 +470,7 @@ const correctnessRules = {
469470} as const ;
470471
471472const perfRules = {
473+ 'no-useless-call' : 'off' ,
472474 'no-await-in-loop' : 'off' ,
473475 'react/no-array-index-key' : 'off' ,
474476 'react-perf/jsx-no-jsx-as-prop' : 'off' ,
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ const eslintRules = {
1313 'max-lines' : 'off' ,
1414 'max-params' : 'off' ,
1515 'new-cap' : 'off' ,
16+ 'no-useless-call' : 'off' ,
1617 'no-extra-label' : 'off' ,
1718 'no-multi-assign' : 'off' ,
1819 'no-nested-ternary' : 'off' ,
@@ -109,10 +110,11 @@ const eslintRules = {
109110 'no-void' : 'off' ,
110111 'no-with' : 'off' ,
111112 'prefer-promise-reject-errors' : 'off' ,
112- 'prefer-rest-params' : 'off' ,
113113 'prefer-exponentiation-operator' : 'off' ,
114114 'prefer-numeric-literals' : 'off' ,
115115 'prefer-object-has-own' : 'off' ,
116+ 'prefer-object-spread' : 'off' ,
117+ 'prefer-rest-params' : 'off' ,
116118 'prefer-spread' : 'off' ,
117119 radix : 'off' ,
118120 'require-await' : 'off' ,
You can’t perform that action at this time.
0 commit comments