Skip to content
Merged
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
1 change: 1 addition & 0 deletions rules/always-return.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ function peek(arr) {

module.exports = {
meta: {
type: 'problem',
docs: {
url: getDocsUrl('always-return')
}
Expand Down
1 change: 1 addition & 0 deletions rules/avoid-new.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const getDocsUrl = require('./lib/get-docs-url')

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('avoid-new')
}
Expand Down
1 change: 1 addition & 0 deletions rules/catch-or-return.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const isPromise = require('./lib/is-promise')

module.exports = {
meta: {
type: 'problem',
docs: {
url: getDocsUrl('catch-or-return')
},
Expand Down
1 change: 1 addition & 0 deletions rules/no-callback-in-promise.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const isCallback = require('./lib/is-callback')

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('no-callback-in-promise')
},
Expand Down
1 change: 1 addition & 0 deletions rules/no-native.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ function isDeclared(scope, ref) {

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('no-native')
},
Expand Down
1 change: 1 addition & 0 deletions rules/no-nesting.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const isInsidePromise = require('./lib/is-inside-promise')

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('no-nesting')
}
Expand Down
1 change: 1 addition & 0 deletions rules/no-new-statics.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const getDocsUrl = require('./lib/get-docs-url')

module.exports = {
meta: {
type: 'problem',
docs: {
url: getDocsUrl('no-new-statics')
},
Expand Down
1 change: 1 addition & 0 deletions rules/no-promise-in-callback.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const isInsideCallback = require('./lib/is-inside-callback')

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('no-promise-in-callback')
}
Expand Down
1 change: 1 addition & 0 deletions rules/no-return-in-finally.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const isPromise = require('./lib/is-promise')

module.exports = {
meta: {
type: 'problem',
docs: {
url: getDocsUrl('no-return-in-finally')
}
Expand Down
1 change: 1 addition & 0 deletions rules/no-return-wrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ function isInPromise(context) {

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('no-return-wrap')
},
Expand Down
1 change: 1 addition & 0 deletions rules/param-names.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const getDocsUrl = require('./lib/get-docs-url')

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('param-names')
},
Expand Down
1 change: 1 addition & 0 deletions rules/prefer-await-to-callbacks.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const getDocsUrl = require('./lib/get-docs-url')

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('prefer-await-to-callbacks')
},
Expand Down
1 change: 1 addition & 0 deletions rules/prefer-await-to-then.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const getDocsUrl = require('./lib/get-docs-url')

module.exports = {
meta: {
type: 'suggestion',
docs: {
url: getDocsUrl('prefer-await-to-then')
}
Expand Down
1 change: 1 addition & 0 deletions rules/valid-params.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const isPromise = require('./lib/is-promise')

module.exports = {
meta: {
type: 'problem',
docs: {
description:
'Ensures the proper number of arguments are passed to Promise functions',
Expand Down