node/tools/eslint/lib/rules/no-sync.js

31 lines
764 B
JavaScript
Raw Normal View History

/**
* @fileoverview Rule to check for properties whose identifier ends with the string Sync
* @author Matt DuVall<http://mattduvall.com/>
*/
/* jshint node:true */
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = function(context) {
return {
"MemberExpression": function(node) {
var propertyName = node.property.name,
syncRegex = /.*Sync$/;
if (syncRegex.exec(propertyName) !== null) {
context.report(node, "Unexpected sync method: '" + propertyName + "'.");
}
}
};
};
module.exports.schema = [];