wide/static/js/lint/go-lint.js

13 lines
204 B
JavaScript
Raw Normal View History

2014-09-09 11:33:12 +04:00
goLintFound = [];
2014-09-09 09:53:25 +04:00
(function(mod) {
mod(CodeMirror);
})(function(CodeMirror) {
"use strict";
CodeMirror.registerHelper("lint", "go", function(text) {
2014-09-09 11:33:12 +04:00
return goLintFound;
2014-09-09 09:53:25 +04:00
});
});