问题标签 [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.
css - 如何为 grunt-lesslint 设置映射
我的 main.less 文件中有很多导入,并且 lesslint 正确导入/整理它们,但问题是 - 我看不到任何 linting 错误的映射,所以我无法理解哪个更少的文件包含错误。有什么想法如何正确设置它?
我是这样设置的:
node.js - Csslint:背景图像被多次使用
我的css中有这个:
我收到 csslint 任务错误:
有没有办法声明这些图像,这样我就不会收到这个错误?
编辑(另一种情况):
我收到了这个错误:[L651:C1] 背景图像“/public/system/assets/img/bglinkcars.png”被多次使用,首先在第 628 行第 1 列声明。每个背景图像都应该是唯一的。为例如精灵使用一个公共类。(d 复制背景图像)
css - 在 CSSLint 中完全忽略明星黑客?
我有这样的CSS:
当我通过运行 CSSLint
它仍然显示此错误:
有什么解决办法吗?
json - 如何覆盖 SublimeLinter-CSSLint 中的“选择器不应包含 ID”规则?
进入csslint --list-rules
终端,我看到以下规则:
因此,在我的SublimeLinter.sublime-settings
用户首选项文件中,我尝试将“ids”设置为false
, true
, "none"
, "ignore"
, "exclude"
, 和""
下面的代码结构,但没有效果。
我不容易找到有关如何校准ids
设置的文档。有人知道吗?谢谢!
adobe-brackets - How to ignore specific warnings outputted by the CSSLint extension for Brackets
I'm using the CSSLint extension for Brackets. Is there a way to disable specific warnings for things like box-model
and @bulletproof-font-face
? The best match I've found for a discussion is here. At the moment I'm hoping to use a preamble in my CSS of the form /*csslint ignore: box-model */
, but that's not working. I do know that this extension is able to work with .csslintrc
files. I've attempted to put one in the same directory as where my CSS lives, with csslint ignore: box-model
, but that didn't work either. Any advice or insights will be appreciated.
Update 1
Looking more into the support of .csslintrc
files with Brackets, I've found this and this, which seems to suggest the use of --ignore=box-model,bulletproof-font-face
. Putting this file either where my CSS lives or in the directory of the Brackets extension (~/.config/Brackets/extensions/user/camden.csslint/csslint
on a Linux machine) doesn't work either.
Update 2
Putting .csslintrc
in ~/.config/Brackets/extensions/user/camden.csslint/csslint/
definitely doesn't work; the file is removed after an update.
css - CssLint:未知属性“填充”
我正在通过 css 更改 SVG 路径颜色:
它工作得很好,但是在它上面运行 cssLint 时,我收到了这个警告:
是 cssLint 错误吗?还是在 css 中使用这个属性来改变 SVG 路径的属性是一件坏事?
teamcity - TeamCity - MSBuild 代码分析
我已经使用 Jenkins CI 几年了,我想学习 TeamCity。
在 Jenkins 中,我通过在我的 .net 项目上启用代码分析来跟踪 FxCop 问题,然后告诉 Violations 插件在哪里可以找到代码分析 XML 文件,即 MSBUILD 会在构建输出目录中放置一个名为 [项目名称].CodeAnalysisLog.xml 的文件,然后您可以使用 **/*/*CodeAnalysisLog.xml 之类的内容通过 Violations 插件查找这些文件。
TeamCity 有自己的 FxCop 运行器,但我不想再次运行 FxCop,因为 MSBuild 已经为我完成了。
我只想能够告诉 TeamCity 在哪里可以找到 XML 文件并让它生成趋势图,就像 Jenkins 使用 Violations 插件一样。
我对 StyleCop、jsLint 和 cssLint 也有类似的问题。作为构建的一部分运行的 MSBuild 构建任务或批处理命令会生成 XML 输出。我想用这个输出来创建趋势图。
css - 在 CSS Lint 中验证时的 CSS ID 与类警告
我正在使用 XHTML(严格)创建网页 - 我还不能使用 HTML5。当我通过 CSS Lint 运行我的 CSS 代码时,我多次收到警告“不要在选择器中使用 ID”。
我不确定为什么会收到这些警告。我应该专门使用类而不是 id 吗?我很欣赏 HTML 5 可以选择使用语义标签,但现在我需要坚持使用 XHTML。任何人都可以帮忙吗?
sublimetext3 - 如何使用 SublimeLinter 的 CSSlint 首选项设置`.sublimelinterrc`?
我正在尝试.sublimelinterrc
为 SublimeLinter 和 CSSlint 配置文件,我编写了一个规则列表示例,但它不起作用并继续使用默认规则对其进行 lint,这是我的配置:
我很喜欢 SublimeLinter 和 SublimeLInter-csslint 并且正在工作。
我应该如何写.sublimelinterrc
文件?