Can I use eslint as code formatter

0

Hi,
I installed eslint and set up .eslintrc. it works fine when I use it from terminal.
But, it seems to be in error if I set "npx eslint --fix" to code formatter in Preference.

When I save files in the project, "SAVING..." button is appeared next to "Run" button, after a while it turns to "ALL CHANGES SAVED" but nothing changed even if the code violate eslint's rule.

Any suggestions would be greatly appreciated.

sogo
preguntada hace 5 años424 visualizaciones
6 Respuestas
0
Respuesta aceptada

cd doesn't work because cloud9 gives a relative file path which is wrong after cd.

Try

f=$(readlink -f "$file");cd $(dirname "$f");  npx eslint --fix $f  
respondido hace 5 años
profile picture
EXPERTO
revisado hace un mes
0

This can be caused by missing "$file" argument to eslint, or the correct version of npx not being on PATH

to debug the issue you can add &> ~/eslint-log to the end of the command to see the output in eslint-log

For me the command

PATH=~/.nvm/versions/node/v10.15.3/bin:$PATH npx eslint --fix "$file" 

works.

respondido hace 5 años
0

Hi harutyun,

Thank you for your reply.
I checked the output from eslint by the way that you post, PATH seems to be OK but eslint can not find plugin.

I checked current directory with followin code formatter setting

pwd > ~/test.log
then I got following result
$ cat test.log
/home/ec2-user/environment
I have several project directory under ~/environment, so it seems that npx was issued outside of node project directory.

But, it is hard to solve.
following 2 cmd does not work because code formatter setting will be sanitized

(cd dirname $file; npx eslint --fix $file)
(cd dirname $file&& npx eslint --fix $file)
Then env does not support "-C" in amazon linux, following setting will cause "invalid option" error
env -C dirname $file npx eslint --fix $file

does anyone has any suggestions to this problem?

sogo
respondido hace 5 años
0

Hi harutyun,

Thanks again, your solution works perfectly for me.

sogo
respondido hace 5 años
0

this gives me the following error:

Error running code formatter for javascript: f=$(readlink not found, please check your project settings

i've tried some other things, but basically the error it shows always the same error.... not found.

i've managed to run this in my command line, just fine;

file=/home/ec2-user/environment/git/llinkid/web/js/components/curriculum/goalsTab/index.js; f=$(readlink -f "$file");cd $(dirname "$f"); npx eslint --fix $f

it seems like it crashes whenever i add npx in the command of the formatter. i managed to test everything else that seems fine.

edit: for some reason, closing the browser and opening c9 again fixed it...

Edited by: Stefanvds on Oct 22, 2019 10:58 PM

respondido hace 5 años
0

Thanks so much, this worked for me as well!

respondido hace 4 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas