You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
453 B
25 lines
453 B
/** |
|
* Rule: avoid-new |
|
* Avoid creating new promises outside of utility libraries. |
|
*/ |
|
|
|
'use strict' |
|
|
|
const getDocsUrl = require('./lib/get-docs-url') |
|
|
|
module.exports = { |
|
meta: { |
|
docs: { |
|
url: getDocsUrl('avoid-new') |
|
} |
|
}, |
|
create(context) { |
|
return { |
|
NewExpression(node) { |
|
if (node.callee.name === 'Promise') { |
|
context.report({ node, message: 'Avoid creating new promises.' }) |
|
} |
|
} |
|
} |
|
} |
|
}
|
|
|