Skip to content
#

lint

Here are 947 public repositories matching this topic...

stylelint
siarheiyelin
siarheiyelin commented Oct 8, 2021

Clearly describe the bug

Stylelint throws error when "media-feature-name-value-allowed-list" rule is defined for the following SCSS code:
SCSS code looks like this:

// This code causes error (even though it's correct SCSS code). Important note: there is no space between "and" and "("
        @media only screen and(min-width: 640px) {
            display: none;
        }
// Next
reviewdog
azu
azu commented Nov 1, 2019

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>) 
cfn_nag

Improve this page

Add a description, image, and links to the lint topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the lint topic, visit your repo's landing page and select "manage topics."

Learn more