Hello. I introduce yet another plugin for Sublime Text editor to integrate ESLint: Build Next.
https://sublime.wbond.net/packages/Build%20Next Features - Extend Default.exec plugin and no external dependencies. - Zero user preferences and preferences per build system. - Close build results view if there are not errors. - Show a dot icon in the gutter area close to the error. - Draw an horizontal region close to the column (tabs-aware) of the error. - Open finally the output panel. - Go to the results following a line number order. - Wrap around the end of the document for the next (previous) result. - The output panel content is refreshed on the next (previous) result command. Installation 1. Add the build system file to your Sublime Text configuration. 2. Add Build Next plugin with Package Control ESLint.sublime-build { "selector": "source.js", "cmd": ["eslint", "--format", "compact", "$file"], "shell": true, "file_regex": "^(.*): line (\\d+), col (\\d+), (.+)$", "windows": { "cmd": ["eslint.cmd", "--format", "compact", "$file"] }, "env": { "ST_BUILD_ADJUST_COLUMNERROR": "1" } } Regards, Alberto -- You received this message because you are subscribed to the Google Groups "ESLint" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
