Search code examples
javascripthtmlcodemirror

codemirror. lint in htmlmixed mode


I create a textarea with such parameters:

{
  lineNumbers: true,
  dragDrop: true,
  mode: "htmlmixed",
  theme: 'bespin',
  autoCloseBrackets: true,
  autoCloseTags: true,
  matchBrackets: {
    afterCursor: true,
    maxScanLines: 10000,
    maxScanLineLength: 100000
  },
  foldGutter: true,
  gutters: ["CodeMirror-lint-markers", "CodeMirror-linenumbers", "CodeMirror-foldgutter"],
  lint: true,
  matchTags: {
    bothTags: true
  }
}

but the analysis is only for html.

Is it possible to make so that the linter analyzed html, css and js?


Solution

  • You can add the addon htmlmixed-lint.js from the codemiror based collaborative editor codepad.