in src/rules/no-deprecated-colors.js [148:151]
function isGet(identifier, scope) {
// This is a flaky way to check for the `get` function and should probably be improved.
return isImportedFrom(/^\.\.?\/constants$/, identifier, scope) && identifier.name === 'get'
}