PluginProbe
Smart Grid-Layout Design for Contact Form 7 / 4.12
Smart Grid-Layout Design for Contact Form 7 v4.12
4.18.0 4.17.0 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10 4.11 4.12 4.13 4.14 All 119 releases
cf7-grid-layout / assets / codemirror / addon / lint / coffeescript-lint.js

coffeescript-lint.js in Smart Grid-Layout Design for Contact Form 7 4.12, at assets/codemirror/addon/lint/coffeescript-lint.js

48 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 // CodeMirror, copyright (c) by Marijn Haverbeke and others
2 // Distributed under an MIT license: http://codemirror.net/LICENSE
3
4 // Depends on coffeelint.js from http://www.coffeelint.org/js/coffeelint.js
5
6 // declare global: coffeelint
7
8 (function(mod) {
9 if (typeof exports == "object" && typeof module == "object") // CommonJS
10 mod(require("../../lib/codemirror"));
11 else if (typeof define == "function" && define.amd) // AMD
12 define(["../../lib/codemirror"], mod);
13 else // Plain browser env
14 mod(CodeMirror);
15 })(function(CodeMirror) {
16 "use strict";
17
18 CodeMirror.registerHelper("lint", "coffeescript", function(text) {
19 var found = [];
20 if (!window.coffeelint) {
21 if (window.console) {
22 window.console.error("Error: window.coffeelint not defined, CodeMirror CoffeeScript linting cannot run.");
23 }
24 return found;
25 }
26 var parseError = function(err) {
27 var loc = err.lineNumber;
28 found.push({from: CodeMirror.Pos(loc-1, 0),
29 to: CodeMirror.Pos(loc, 0),
30 severity: err.level,
31 message: err.message});
32 };
33 try {
34 var res = coffeelint.lint(text);
35 for(var i = 0; i < res.length; i++) {
36 parseError(res[i]);
37 }
38 } catch(e) {
39 found.push({from: CodeMirror.Pos(e.location.first_line, 0),
40 to: CodeMirror.Pos(e.location.last_line, e.location.last_column),
41 severity: 'error',
42 message: e.message});
43 }
44 return found;
45 });
46
47 });
48