Merge pull request #5309 from nnchang/bugfix/codemirror-editor-configuration

CodeMirror: EditorConfiguration.lint can be boolean
This commit is contained in:
Masahiro Wakame
2015-08-22 00:51:27 +09:00
+1 -1
View File
@@ -787,7 +787,7 @@ declare module CodeMirror {
viewportMargin?: number;
/** Optional lint configuration to be used in conjunction with CodeMirror's linter addon. */
lint?: LintOptions;
lint?: boolean | LintOptions;
}
interface TextMarkerOptions {