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.
36 lines
867 B
36 lines
867 B
'use strict' |
|
|
|
const PROMISE_STATICS = require('./lib/promise-statics') |
|
const getDocsUrl = require('./lib/get-docs-url') |
|
|
|
module.exports = { |
|
meta: { |
|
docs: { |
|
url: getDocsUrl('no-new-statics') |
|
}, |
|
fixable: 'code' |
|
}, |
|
create(context) { |
|
return { |
|
NewExpression(node) { |
|
if ( |
|
node.callee.type === 'MemberExpression' && |
|
node.callee.object.name === 'Promise' && |
|
PROMISE_STATICS[node.callee.property.name] |
|
) { |
|
context.report({ |
|
node, |
|
message: "Avoid calling 'new' on 'Promise.{{ name }}()'", |
|
data: { name: node.callee.property.name }, |
|
fix(fixer) { |
|
return fixer.replaceTextRange( |
|
[node.start, node.start + 'new '.length], |
|
'' |
|
) |
|
} |
|
}) |
|
} |
|
} |
|
} |
|
} |
|
}
|
|
|