-
Updated
Aug 24, 2020 - Vim script
lint
Here are 769 public repositories matching this topic...
-
Updated
Sep 2, 2020 - JavaScript
Hey. Just a question. Can we add possibility to extend from single string not just from array? So it will work like other linting libraries (eslint, stylelint, etc.).
package.json
"babel": {
"extends": "shared-tools"
},
"commitlint": {
"extends": [
"shared-tools"
]
},
"eslintConfig": {
"extends": "shared-tools"
}At least I can't make sense of it:
warning: some ranges overlap
--> pdf/src/primitive.rs:187:17
|
187 | b' ' ..= b'~' => write!(f, "{}", b as char)?,
| ^^^^^^^^^^^^^
|
= note: `#[warn(clippy::match_overlapping_arm)]` on by default
note: overlaps with this
--> pdf/src/primitive.rs:186:17
|
186 | b'"' => writ
Hi Web Hint Team,
I have just started using Webhint.io browser extension with both Firefox and Chrome and find it awesome. There is one thing which i think is absolutely required and that's a way to print (to pdf) / save the results generated.
I hope you will find this request genuine.
Regards,
Abhishek Jain
-
Updated
Sep 2, 2020 - Go
-
Updated
Aug 31, 2020 - JavaScript
There's a formatting specification for Tag Keys and Values. One issue with applying some changes is that you are disallowed from using certain characters (notably the ,) in a Tag Value, and this is not being caught by tflint currently.
Current
export declare type TextlintRuleReportHandler = {
[P in ASTNodeTypes]?: (node: TypeofTxtNode<P>) => void | Promise<any>;
} & {
[index: string]: (node: any) => void | Promise<any>;
};
/**
* Textlint rule reporter function
*/
export declare type TextlintRuleReporter<T extends object = {}> = (context: Readonly<TextlintRuleContext>, options?: TextlintRuleOptions<T>) -
Updated
Jul 28, 2020
-
Updated
Aug 27, 2020 - C
-
Updated
Jul 15, 2020 - JavaScript
-
Updated
Aug 24, 2020 - JavaScript
-
Updated
Mar 15, 2020 - PHP
-
Updated
Jul 30, 2020 - Python
I really like enforcing one expectation per example. But with RSpec's exception matching, you need two expect calls if you want to assert something about an exception:
expect { my_code }.to raise_error(MyErrorType) do |error|
expect(error.message).to match /something went wrong/
end
There's no way to match against the error message without first wrapping the call, and RSpec o
-
Updated
Mar 29, 2020 - JavaScript
Improve this page
Add a description, image, and links to the lint topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the lint topic, visit your repo's landing page and select "manage topics."


The developers on my team use class and id attributes in attribute selectors instead of using id selector or classname selector. This adds complexity and inconsistent coding style.
To fix the above mentioned problem, having this lintin