Skip to content
#

lint

Here are 1,043 public repositories matching this topic...

stylelint
webfrontzhifei
webfrontzhifei commented May 8, 2022

What steps are needed to reproduce the bug?

.demo{
position: absolute;
right: .0rem;
top: -.52rem;
}

What Stylelint configuration is needed to reproduce the bug?

const config = {
extends: ['stylelint-config-standard'],
plugins: ['stylelint-scss'],
rules: {}
};

module.exports = config;

How did you run Stylelint?

stylelint --fix

Which version of Stylelint

status: ready to implement type: bug good first issue
reviewdog
TWiStErRob
TWiStErRob commented Apr 23, 2022

Expected Behavior of the rule

UnnecessaryAbstractClass should have a concise description like other rules

Context

I just updated Detekt 1.19.0 to 1.20.0 and got this failure:
https://github.com/TWiStErRob/net.twisterrob.cinema/security/code-scanning/227

The message is just plain weird to be this long:
![image](https://user-images.githubusercontent.com/2906988/164910306-4b4478c4-0

help wanted rules good first issue
antross
antross commented Apr 13, 2021

This hint has been around since 2018 and is documented on webhint.io (https://webhint.io/docs/user-guide/hints/hint-doctype/). However it's not enabled by default in any of webhint's configurations (likely an oversight).

We should turn this on by default and perform any necessary cleanup in the process (e.g. switching to get locations from webhint's location-aware DOM that was added after the

type:bug good first issue msft-consider
azu
azu commented Oct 17, 2021

When I've create a rule and test it.

https://github.com/textlint-rule/textlint-rule-no-duplicate-abbr/blob/0e496443352a451d17f04526893ba1c10c60eaf3/src/textlint-rule-no-duplicate-abbr.ts#L4-L12

TypeScript throw an compiler error on textlint-tester.

TS2345: Argument of type 'TextlintRuleReporter<Options>' is not assignable to parameter of type 'TextlintRuleModule<{}> | TestConfig'.   
cfn_nag
bquorning
bquorning commented Mar 23, 2021

I'm seeing double/instance_double/class_double/object_double/spy etc. being called with sometimes a string, sometimes a symbol (perhaps because the rspec-mocks documentation explicitly allows both), and of course sometimes a constant referring to a class or module.

I think mixing string and symbol arguments is a bit of a mess, so I would propose making a new cop that enforces either one or the

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