1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/eslint-plugin-promise/rules/no-native.js

61 lines
1.2 KiB
JavaScript
Raw Permalink Normal View History

2023-12-18 13:12:25 +08:00
// Borrowed from here:
// https://github.com/colonyamerican/eslint-plugin-cah/issues/3
'use strict'
const getDocsUrl = require('./lib/get-docs-url')
function isDeclared(scope, ref) {
2024-01-16 21:26:16 +08:00
return scope.variables.some((variable) => {
2023-12-18 13:12:25 +08:00
if (variable.name !== ref.identifier.name) {
return false
}
if (!variable.defs || !variable.defs.length) {
return false
}
return true
})
}
module.exports = {
meta: {
2024-01-16 21:26:16 +08:00
type: 'suggestion',
2023-12-18 13:12:25 +08:00
docs: {
2024-01-16 21:26:16 +08:00
url: getDocsUrl('no-native'),
2023-12-18 13:12:25 +08:00
},
messages: {
2024-01-16 21:26:16 +08:00
name: '"{{name}}" is not defined.',
},
2023-12-18 13:12:25 +08:00
},
create(context) {
/**
* Checks for and reports reassigned constants
*
* @param {Scope} scope - an escope Scope object
* @returns {void}
* @private
*/
return {
'Program:exit'() {
const scope = context.getScope()
2024-01-16 21:26:16 +08:00
scope.implicit.left.forEach((ref) => {
2023-12-18 13:12:25 +08:00
if (ref.identifier.name !== 'Promise') {
return
}
if (!isDeclared(scope, ref)) {
context.report({
node: ref.identifier,
messageId: 'name',
2024-01-16 21:26:16 +08:00
data: { name: ref.identifier.name },
2023-12-18 13:12:25 +08:00
})
}
})
2024-01-16 21:26:16 +08:00
},
2023-12-18 13:12:25 +08:00
}
2024-01-16 21:26:16 +08:00
},
2023-12-18 13:12:25 +08:00
}