deadem / notepad-pp-linter

Notepad++ Linter. Realtime code check against any checkstyle-compatible linter: jshint, eslint, jscs, phpcs, csslint etc
MIT License
37 stars 7 forks source link

Linter doesn't seem to be using stdin #41

Closed mike406 closed 9 months ago

mike406 commented 9 months ago

Using flake8 with python, which supports reading in a .py file from stdin. The linter plugin for some reason is still generating the tmp file despite me enabling stdin="1". Anything I am doing wrong?

image

<?xml version="1.0" encoding="utf-8" ?>
<NotepadPlus>
  <linter stdin="1" extension=".py" command="flake8 --format=checkstyle"/>
</NotepadPlus>
mike406 commented 9 months ago

Resolved