org.sonar.css.checks.l10n.scss.custom-function-naming-convention.html Maven / Gradle / Ivy
Shared coding conventions allow teams to collaborate efficiently. This rule checks that all SCSS custom function
names match a provided regular expression.
Noncompliant Code Example
With default format ^[a-z][-a-z0-9]*$
:
@function my_custom_function($color) { ... }
Compliant Solution
With default format ^[a-z][-a-z0-9]*$
:
@function my-custom-function($color) { ... }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy