28 lines
497 B
JavaScript
28 lines
497 B
JavaScript
|
/**
|
||
|
* Rule: avoid-new
|
||
|
* Avoid creating new promises outside of utility libraries.
|
||
|
*/
|
||
|
|
||
|
'use strict'
|
||
|
|
||
|
const getDocsUrl = require('./lib/get-docs-url')
|
||
|
|
||
|
module.exports = {
|
||
|
meta: {
|
||
|
type: 'suggestion',
|
||
|
docs: {
|
||
|
url: getDocsUrl('avoid-new'),
|
||
|
},
|
||
|
schema: [],
|
||
|
},
|
||
|
create(context) {
|
||
|
return {
|
||
|
NewExpression(node) {
|
||
|
if (node.callee.name === 'Promise') {
|
||
|
context.report({ node, message: 'Avoid creating new promises.' })
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
},
|
||
|
}
|