Giter Site home page Giter Site logo

denisraslov / stylelint-value-no-exposed-custom-properties Goto Github PK

View Code? Open in Web Editor NEW
14.0 3.0 1.0 94 KB

A stylelint rule to disallow usage of exposed custom properties

License: MIT License

JavaScript 99.72% CSS 0.28%
stylelint custom-properties css-variables

stylelint-value-no-exposed-custom-properties's People

Contributors

denisraslov avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

stylelint-value-no-exposed-custom-properties's Issues

Unexpected errors when using alias

When using aliases, the plugin requires to use the latest alias variable. While both should be allowed.

For insatnce:
:root {
--my-color-variable: #FF0000;
--my-alias-variable: var(--my-color-variable);
}

.my-element {
// This i allowed which is totally fine
background-color: var(--my-alias-variable);
}

.my-element {
// This is not allowed. The plugins requires that only the alias is used, while both are acceptable use of the variables
background-color: var(--my-color-variable);
}

Value matching behaviour

Hi! Thanks for the plugin.

Can you please explain, why default matching behaviour is value.includes(property)?

if (value.includes(property)) return i;

It seems very strange, because when I got some custom property like --z-index-header: 1 in my CSS, plugin suggests me to replace every value that includes 1 with this custom property, i.e. The value (or a part of it) should be presented as a custom property: "1.125rem" is "--z-index-header".

Is include used to detect exposed values in shorthand properties like background? Maybe we should split property value by space character and check every part of it instead of checking the whole value?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.