I have been given a web project at work that has a .eslintrc file in it and was told to use it.
I gather that this enforces code styles and sounds like a good idea, but I have never done this before.
I just switched to Eclipse Neon. But I can find no tutorials on how to use it. I did find something that says eslint is now the default linter for Eclipse but that was for Orion. Can someone tell me how to use my .eslintrc file for all my .js files in Eclipse?
ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code. It was created by Nicholas C. Zakas in 2013. Rules in ESLint are configurable, and customized rules can be defined and loaded.
To configure ESLint automatically in all new projects, open the Settings for New Projects dialog (File | New Projects Setup | Settings/Preferences for New Projects) , go to Languages & Frameworks | JavaScript | Code Quality Tools | ESLint, and select the Automatic ESLint configuration option.
According to this, you have to install Tern into your Eclipse, then configure it to use the ESLint linter. It's not clear (to me) whether or not the plugin will use your .eslintrc
for configuration; it talks about an ESLint JSON configuration file instead.
I'm using Neon myself, and this is how you configure ESLint:
Create an ESLint JSON configuration file by following these instructions.
Go to Project / Properties / JavaScript / Tern / Validation / ESLint and check "Use config files":
Enter the path to your eslint.json
file (or whatever you named the file you created from step 1) and press OK.
If you want to disable ESLint (or any other module), go to Project / Properties / JavaScript / Tern / Modules and uncheck it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With