Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.53 KB

LINTERS.md

File metadata and controls

28 lines (18 loc) · 1.53 KB

Butler Linters

This document goes over the linting functionality included in Butler and how it can be ignored or extended for project use.

Stylelint

Butler runs stylelint as a PostCSS command that ensures that we are writing quality styles. Butler will automatically lint as it compiles. As a designer or developer, you will see warnings and errors in the Terminal as they are found by Butler.

Default style lint configuration can be found at butler/config/linters/stylelint.config.json. It is based on a few defaults that we should be matching in our CSS.

To learn more about writing custom rules (or changing these defaults), I recommend reviewing the Stylelint rule documentation.

Stylelint Selector Bem Pattern

Butler incorporates the stylelint-selector-bem-pattern plugin, which will lint the selectors to check that they are inline with Palantir.net Class Naming guidelines. In order to lint selectors, they must use the following syntax (including comments).

/** @define MyComponent */

:root {
  --MyComponent-property: value;
}

.MyComponent {}

.MyComponent-other {}

There is an example class in Butler's styles.scss. It is there for example only, to show what NOT to do for class names and what comments to do if you want the linter to check class names.

You can read more documentation on how the selector linter works and how to customize it here.