Skip to content

Commit 045aa2e

Browse files
committed
fix(param-names): avoid including fixable: code when not fixable
Per the eslint docs at https://eslint.org/docs/developer-guide/working-with-rules#options-schemas > Omit the fixable property if the rule is not fixable.
1 parent 202798d commit 045aa2e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rules/param-names.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ module.exports = {
66
meta: {
77
docs: {
88
url: getDocsUrl('param-names')
9-
},
10-
fixable: 'code'
9+
}
1110
},
1211
create(context) {
1312
return {

0 commit comments

Comments
 (0)