Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

coffeescript-lint.js 1.4KB

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