linter

VS code, julia linter doesn't work (on mac)

你。 提交于 2021-02-17 02:04:12
问题 having assured myself that julia is enabled and that the linter is too (in vs code settings: Julia › Lint: Run), i get syntax highlighting on my xxx.jl script but no linting at all. im on the latest vs code + latest julia 1.07 extension + latest macosx. i did a clean installation of vs code, wiping all old related folders prior to installation (https://stackoverflow.com/a/53839847/11608725) so julia is the only extension/package installed, no conflicts should be present. what am i missing?

Atom: Why Linter does not highlight my errors inline with text?

末鹿安然 提交于 2020-05-30 08:14:38
问题 I saw in tutorials that linter in atom must highlight html syntax errors inline with text and it also highlights lines with red bubbles near them like below: I installed linter-htmlhint besides of linter but it did not help and currently my atom editor only reports error and do not highlight them inline with text: What Should I do? Here is list of my installed plugins: atom-html-preview atom-ternjs autoclose-html busy-signal csslint emmet htmlhint intentions language-ejs linter linter-eslint

Atom: Why Linter does not highlight my errors inline with text?

微笑、不失礼 提交于 2020-05-30 08:14:11
问题 I saw in tutorials that linter in atom must highlight html syntax errors inline with text and it also highlights lines with red bubbles near them like below: I installed linter-htmlhint besides of linter but it did not help and currently my atom editor only reports error and do not highlight them inline with text: What Should I do? Here is list of my installed plugins: atom-html-preview atom-ternjs autoclose-html busy-signal csslint emmet htmlhint intentions language-ejs linter linter-eslint

Disable warnings (ids selector) in linter-csslint on Atom?

余生颓废 提交于 2019-12-20 07:37:46
问题 How to disable warnings in linter-csslint on Atom like iDs selector warning 回答1: You can create a .csslintrc file in your project's directory as specified here. Inside the file, you can add this: { "ignore": [ "ids" ] } You can see the full list of rules here. 来源: https://stackoverflow.com/questions/44875427/disable-warnings-ids-selector-in-linter-csslint-on-atom

Display Flycheck buffer (with errors) when saving

雨燕双飞 提交于 2019-12-12 18:12:05
问题 In Emacs, what would be the way to display the Flycheck buffer automatically when saving, only if there are errors? A bit like https://github.com/steelbrain/linter. I've searched on https://stackoverflow.com/questions/tagged/flycheck?sort=votes&pageSize=50 but did not find anything approaching. 回答1: Add the following to ~/.emacs , this will bind it to C-x C-s : (defun save-buffer-maybe-show-errors () "Save buffer and show errors if any." (interactive) (save-buffer) (when (not flycheck-current

Atom linter-flake8 failed to spawn (not in PATH)

丶灬走出姿态 提交于 2019-12-09 19:31:22
问题 i installed linter-flake8 package in Atom . I got this error : [Linter] Error running Flake8 Error: Failed to spawn command flake8 . Make sure flake8 is installed and on your PATH i'm sure flake8 is in the PATH . Have a look at the image i attach. I try to input the executable path to the flake8 setting but still doesn't work. I use windows 10 and i have python 2.7 and 3.5 installed . The 2.7 is installed in C:/python27, while 35 is installed in user/local folder (see attachment). Found

Is it possible to ignore specific warnings with Visual Studio Code's linter?

我的梦境 提交于 2019-12-08 00:00:10
问题 Our company is thinking about switching from Sublime to Visual Studio Code. With SublimeLinter it's possible to use ignore_match statements in the preferences file to ignore specific warnings. This lets us hide false positives such as tracking tags in URLs. I've tried to find an equivalent function in VSC but to no avail. Can anyone tell me if this can be achieved? Thanks 回答1: I think that your linter's configuration is going to be very language specific - this is an answer for Golang, and it

Scala 2.12.2 emits a ton of useless “Warning: parameter value … in method … is never used” warnings. How to get rid of them?

我的梦境 提交于 2019-12-04 10:50:55
问题 This is a question so I don't have to traverse the entire Internet to find the answer, as scalac options are currently not published. How do I disable these warnings starting in Scala 2.12.2, when I have a global "-Xlint" ? 回答1: $ scalac -Ywarn-unused:help Enable or disable specific `unused' warnings imports Warn if an import selector is not referenced. patvars Warn if a variable bound in a pattern is unused. privates Warn if a private member is unused. locals Warn if a local definition is

Disable warnings (ids selector) in linter-csslint on Atom?

折月煮酒 提交于 2019-12-02 09:50:54
How to disable warnings in linter-csslint on Atom like iDs selector warning You can create a .csslintrc file in your project's directory as specified here . Inside the file, you can add this: { "ignore": [ "ids" ] } You can see the full list of rules here . 来源: https://stackoverflow.com/questions/44875427/disable-warnings-ids-selector-in-linter-csslint-on-atom