Add ability to filter out compiler warnings

pull/1/head
greg 7 years ago committed by yann300
parent 0966057c88
commit ed9892a568
  1. 6
      src/app/tabs/compile-tab.js

@ -38,6 +38,7 @@ module.exports = class CompileTab {
maxTime: 1000,
timeout: 300
}
self._opts.config.set('hideWarnings', false)
self._events.editor.register('contentChanged', scheduleCompilation)
self._events.editor.register('sessionSwitched', scheduleCompilation)
function scheduleCompilation () {
@ -334,6 +335,11 @@ const css = csjs`
display: flex;
align-items: center;
}
.hideWarningsContainer {
display: flex;
align-items: center;
margin-left: 2%
}
.autocompile {}
.autocompileTitle {
font-weight: bold;

Loading…
Cancel
Save