Files
luos/gulliver/js/codemirror/test/lint.js
alex_santos 1bce18fbe9 FBI-1684: [MANTIS - 22275] Scroll in trigger editor jumps several lines up when
scrolling with the mouse scroll wheel

resolve observations
2017-04-26 10:55:00 -04:00

21 lines
422 B
JavaScript

var blint = require("blint");
["mode", "lib", "addon", "keymap"].forEach(function(dir) {
blint.checkDir(dir, {
browser: true,
allowedGlobals: ["CodeMirror", "define", "test", "requirejs"],
ecmaVersion: 5,
tabs: dir == "lib"
});
});
["src"].forEach(function(dir) {
blint.checkDir(dir, {
browser: true,
ecmaVersion: 6,
semicolons: false
});
});
module.exports = {ok: blint.success()};