问题标签 [csslint]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
csslint - csslint:如何从命令行中排除目录?
我想使用 排除所有vendor
目录(例如:)public/css/vendor
,csshint
但是当我运行以下命令时:
什么都没发生!有人可以帮我吗?
我从这里得到了一个例子:
https://github.com/CSSLint/csslint/wiki/command-line-interface
谢谢!
sublimetext - Sublime Text 3 CSSLint 包不使用 .csslintrc
我正在尝试将 CSSLint 与 Sublime Text 3 一起使用,但我似乎无法让它使用我在项目根目录中拥有的 .csslintrc 文件。
最初我以为它会是 JSON 格式,但后来发现你必须使用命令行语法,所以作为测试,我在我的 .csslintrc 文件中尝试了这些:
--ignore=ids,重要
和
忽略=ID,重要
但两者都不能阻止 linter 警告使用任何一个???有什么建议么?如果我只是将它粘贴在用户设置文件中,它确实有效,但是因为我在我的项目中使用 .jshintrc 和其他文件进行 linting 等,并不是每个人都使用 Sublime Text(我不知道他们为什么不使用 :),我宁愿把它全部放在 .csslintrc
css - CSS lint 抛出错误
csslint.net为以下 css 引发错误,我不知道为什么。我认为这对于 css 来说是很正常的。我从这个网站得到了 CSS 。
有人能帮我吗?我真的不知道它有什么问题。
parsing - CSS lint parsing error - expected LBRACE error
Need some help.
When looking at my CSS in CSS lint, they constantly report a parsing error, namely 'expected LBRACE error' Here is a screenshot of the issue: screenshot
They show issue on my closing bracket. I checked my code several times, and I just can't find, what could be the issue.
What I realized if I change the key-frame prefix order, then the error shows on different lines (so not always on the closing bracket)
Here is my code, please take a look, and let me know if somebody sees an error there, and what is it, thank you in advance:
css - CSSLint:忽略 CSS 文件中的单行?
我正在使用一个 CSS 文件,该文件使用 Mozilla 的 -moz-element(#element) 指令作为背景图像。代码如下所示:
#foo {background-image: -moz-element(#element);}
当我通过 CSSLint 运行它时,它告诉我“规则为空”,尽管它显然不是。我可以尝试通过命令行运行 CSSLint 并使用 --ignore,但我真正要寻找的是一种方法来忽略我的 CSS 文件中的那一行。有没有办法做到这一点?
为了清楚起见,我正在寻找的是类似于 JSHint 做事的方式,看起来像这样:
var notChecked = 'This line won't get checked'; // jshint ignore:line
csslint - csslint 警告后备背景(十六进制或 RGB)应在 RGBA 背景之前。" evidence="background: rgba(0, 0, 0, 0.8);
csslint 警告后备背景(十六进制或 RGB)应该在 RGBA 背景之前。” evidence="background: rgba(0, 0, 0, 0.8);/* FF3+,Saf3+,Opera 10.10+,Chrome,IE9*/ 尽管我已经给出一个后备。它给出了很多警告,我已经修复了很多并且它没有对它们显示警告但是现在当我修复它的其余部分时,无论我清除缓存并重新运行和重新修复相同的东西多少次,它仍然给我警告.
sublimetext - Issue with more than two linters working on sublime 3
I'm running sublime 3084 OSX 10.10.3 and i have three tabs open, one html document, one css and one javascript file. I have linters for all three installed but whenever I open the program only the css linter (csslint) and either the html or the javascript linter, but not both, work. If I open the program with the javascript tab open, that linter works. If I open the program with the html document open, that linter works. csslint works regardless. Does anyone know of this issue or possible bug? If so I would greatly appreciate some help, it's really frustrating.
Thanks in advance
css - CSS Lint 忽略所有基于 IE6 和 IE7 的错误
我正在使用 Sublime Text 3 和CSS Linter。
在我的设置中,我放置了忽略规则,目前只有"outline-none"
规则,我想包括所有引用基于 IE6 和 IE7 的错误的规则。
有没有列出什么是 IE6 和 IE7 规则,以便我可以将它们放入忽略数组中?
我的 CSSLint.sublime-settings 如下所示:
jenkins - CSSLint 与 Jenkins
我正在尝试将 CSSLint 与使用 MSBuild 的 Jenkins 持续集成一起使用。我没有找到要在 Jenkins 上安装的插件。
有谁知道我如何找到与 Jenkins 一起安装的与 CSSLint 具有相同功能的插件?
css - 这个 csslint 错误的目的是什么,我该如何摆脱它?
我添加了以下 CSS 代码以消除单击链接 HTML 元素后出现的轮廓。
CSS 代码:
之后我收到以下 csslint 错误消息。我不明白为什么我不应该这样做或者我应该如何正确地做到这一点。
错误消息:WARNING: Outlines shouldn't be hidden unless other visual changes are made. Use of outline: none or outline: 0 should be limited to :focus rules. (outline-none)