Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/rules/param-names.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

Enforce standard parameter names for Promise constructors

:wrench: The `--fix` option on the command line can automatically fix some of
the problems reported by this rule.

#### Valid

```js
Expand Down
3 changes: 2 additions & 1 deletion rules/no-new-statics.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ module.exports = {
docs: {
url: getDocsUrl('no-new-statics')
},
fixable: 'code'
fixable: 'code',
type: 'suggestion'
},
create(context) {
return {
Expand Down
3 changes: 1 addition & 2 deletions rules/param-names.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ module.exports = {
meta: {
docs: {
url: getDocsUrl('param-names')
},
fixable: 'code'
}
},
create(context) {
return {
Expand Down