ESLint-Formatter
ESLint-Formatter copied to clipboard
Sublime Text 3 Plugin to Autoformat with Eslint
Is there a way to disable autofix of the `no-debugger` rule without completely disabling the warnings/errors? https://github.com/eslint/eslint/issues/8695
Probably user error, but I installed ESLint-Formatter with Sublime Package Control and still get an odd error when I press cmd-shift-H: When I type ``` $ eslint filename.js --fix ```...
This is my sublime project. .sublime-project ```js { "folders": [ { "path": "." } ], "settings": { "ESLint-Formatter": { "format_on_save": true, "config_path": "website/.eslintrc", "local_eslint_path": { "osx": "website/node_modules/.bin/eslint" } } }...
Is it possible to have errors only in console and not with the annoying popup? There are situations where I know there will be errors but having a popup interrupt...
I've got this config for eslint-formatter in `settings > user`: ``` { // The location to search for a locally installed eslint package. // These are all relative paths to...
Sometimes I'll undo a bunch of code changes and save the file to see how the application looked in a previous state, then redo all the changes to continue working...
This plugin needs a test suite to ensure the stability of the plugin and verify changes. If anyone has experience with python or sublime plugins and wants to take a...
I've started hitting an error recently, which is almost certainly due to configuration somewhere. But I'm a little stumped as to why/how to go about fixing it. Hoping that I...
My scenario, I have this project with different folders ``` /main/xyz.sublime-project /webapp /backend ``` when running ESLing formatter from sublime, having opened a file like `/webapp/src/something.js` eslint said it could...
I use this plugin a lot and on projects that have generally been configured manually with eslint it works a treat. However often little hobby projects I spin up I...