Jakob Krigovsky

Results 63 comments of Jakob Krigovsky

This Atom package only lints [JavaScript Standard Style](https://standardjs.com) but not any custom ESLint rules. If you’d like to change `standard`’s ESLint ruleset, your best option is probably to use [eslint-config-standard](https://github.com/standard/eslint-config-standard)...

It would probably be best to disable the same rules [standard-markdown](https://github.com/zeke/standard-markdown#rules) disables.

I already had this at the back of my mind and I’m all for it. As soon as we implement #129, auto-formatting on save won’t be too big of an...

If you have [language-vue](https://atom.io/packages/language-vue) installed, linter-js-standard should lint JavaScript inside your `.vue` files. Does this work for you?

Could you be a little bit more specific? Does it not lint for any files? Does `standard` on the command line work?

Could you post the output of `Linter: Debug`? Can you reproduce this issue in a new project or does it only happen in your `mis-helper` project?

I’ve just reset Atom (`rm -r ~/.atom`), installed linter-js-standard (`apm install linter-js-standard`), opened Atom to install all dependencies (such as linter), and configured all settings as shown in your screenshot....

Exactly 👍 For example, [linter-js-standard](https://github.com/ricardofbarros/linter-js-standard) (which I’m a maintainer of) [finds the code using regular expressions](https://github.com/ricardofbarros/linter-js-standard/blob/v5.1.0/lib/utils/html-splitter.js). Although, eventually I’d like to move to [eslint-plugin-html](https://github.com/BenoitZugmeyer/eslint-plugin-html) which is also used by [linter-eslint](https://github.com/AtomLinter/linter-eslint).

This makes sense, however, I’d prefer simply using the `source.js.embedded.html` scope instead. See https://github.com/AtomLinter/linter-jshint/pull/132 for how linter-jshint implemented it. PR welcome!

Thank you, I was able to reproduce this. Long-term, I’m thinking of integrating [eslint-plugin-html](https://github.com/BenoitZugmeyer/eslint-plugin-html). I’ve actually already started working on it, however, it turned out to be more difficult than...