mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-27 09:15:01 +00:00
0ba239bbce
Use eslint instead of jshint for linting. * better linting results * test files linted, too * consistent code style checks Closes #568
19 lines
369 B
JavaScript
19 lines
369 B
JavaScript
'use strict';
|
|
|
|
var inherits = require('inherits');
|
|
|
|
var RuleProvider = require('diagram-js/lib/features/rules/RuleProvider');
|
|
|
|
function CustomRules(eventBus) {
|
|
RuleProvider.call(this, eventBus);
|
|
}
|
|
|
|
CustomRules.$inject = [ 'eventBus' ];
|
|
|
|
inherits(CustomRules, RuleProvider);
|
|
|
|
CustomRules.prototype.init = function() {
|
|
// placeholder
|
|
};
|
|
|
|
module.exports = CustomRules; |