# Setup with Turborepo

Execute the following steps to set up Stylelint for a monorepo solution managed with Turborepo 👇

# Setup the workspace

# Install the packages

Open a terminal at the root of the solution's workspace (the root of the repository) and install the following packages:

pnpm add -D @workleap/stylelint-configs stylelint prettier turbo

# Configure Turborepo

First, create a configuration file named turbo.json at the root of the solution's workspace:

workspace
β”œβ”€β”€ packages
β”œβ”€β”€β”€β”€ pkg-1
β”œβ”€β”€β”€β”€β”€β”€ src
β”œβ”€β”€β”€β”€β”€β”€β”€β”€ ...
β”œβ”€β”€β”€β”€β”€β”€ package.json
β”œβ”€β”€ package.json
β”œβ”€β”€ turbo.json
β”œβ”€β”€ .eslintrc.json

Then, open the newly created file and copy/paste the following content:

turbo.json
{
    "$schema": "https://turbo.build/schema.json",
    "ui": "tui",
    "tasks": {
        "lint": {
            "dependsOn": ["stylelint"]
        },
        "stylelint": {
            "outputs": ["node_modules/.cache/stylelint"]
        }
    }
}

The stylelint task will execute the stylelint script for every project of the solution's workspace.

# Configure Stylelint

Next, let's configure Stylelint. Create a configuration file named .stylelintrc.json at the root of the solution's workspace:

workspace
β”œβ”€β”€ packages
β”œβ”€β”€β”€β”€ pkg-1
β”œβ”€β”€β”€β”€β”€β”€ src
β”œβ”€β”€β”€β”€β”€β”€β”€β”€ ...
β”œβ”€β”€β”€β”€β”€β”€ package.json
β”œβ”€β”€ package.json
β”œβ”€β”€ turbo.json
β”œβ”€β”€ .stylelintrc.json

Then, open the newly created file and extend the default configuration with the shared configurations provided by @workleap/stylelint-configs:

.stylelintrc.json
{
    "$schema": "https://json.schemastore.org/stylelintrc",
    "extends": "@workleap/stylelint-configs"
}

# .stylelintignore

Stylelint can be configured to ignore certain files and directories while linting by specifying one or more glob patterns.

To do so, first, create an .stylelintignore file at the root of the solution's workspace:

workspace
β”œβ”€β”€ packages
β”œβ”€β”€β”€β”€ pkg-1
β”œβ”€β”€β”€β”€β”€β”€ src
β”œβ”€β”€β”€β”€β”€β”€β”€β”€ ...
β”œβ”€β”€β”€β”€β”€β”€ package.json
β”œβ”€β”€ package.json
β”œβ”€β”€ turbo.json
β”œβ”€β”€ .stylelintrc.json
β”œβ”€β”€ .stylelintignore

Then, open the newly created file and paste the following ignore rules:

.stylelintignore
**/dist/*
node_modules
storybook-static
!.storybook

# .prettierignore

Since we choose to stick with ESLint for JavaScript and JSON stylistic rules, a .prettierignore file must be added at the root of the solution's workspace to ignore everything but CSS files.

To do so, first, create a .prettierignore file at the root of the solution's workspace:

workspace
β”œβ”€β”€ packages
β”œβ”€β”€β”€β”€ pkg-1
β”œβ”€β”€β”€β”€β”€β”€ src
β”œβ”€β”€β”€β”€β”€β”€β”€β”€ ...
β”œβ”€β”€β”€β”€β”€β”€ package.json
β”œβ”€β”€ package.json
β”œβ”€β”€ turbo.json
β”œβ”€β”€ .stylelintrc.json
β”œβ”€β”€ .stylelintignore
β”œβ”€β”€ .prettierignore

Then, open the newly created file and paste the following ignore rules:

.prettierignore
*
!**/*.css

# Configure the indent style

Prettier offers built-in rules for configuring the indentation style of a codebase. However, there's a catch: when VS Code auto-formatting feature is enabled, it might conflict with the configured indentation rules if they are set differently.

To guarantee a consistent indentation, we recommend using EditorConfig on the consumer side. With EditorConfig, the indent style can be configured in a single file and be applied consistently across various formatting tools, including ESlint and VS Code.

First, create a .editorconfig file at the root of the solution's workspace:

workspace
β”œβ”€β”€ packages
β”œβ”€β”€β”€β”€ pkg-1
β”œβ”€β”€β”€β”€β”€β”€ src
β”œβ”€β”€β”€β”€β”€β”€β”€β”€ ...
β”œβ”€β”€β”€β”€β”€β”€ package.json
β”œβ”€β”€ package.json
β”œβ”€β”€ turbo.json
β”œβ”€β”€ .stylelintrc.json
β”œβ”€β”€ .stylelintignore
β”œβ”€β”€ .editorconfig

Then, open the newly created file and paste the following configuration:

.editorconfig
root = true

[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4

[*.md]
trim_trailing_whitespace = false

# Add a CLI script

Finally, add the following script to your solution's workspace package.json file:

workspace
β”œβ”€β”€ packages
β”œβ”€β”€β”€β”€ pkg-1
β”œβ”€β”€β”€β”€β”€β”€ src
β”œβ”€β”€β”€β”€β”€β”€β”€β”€ ...
β”œβ”€β”€β”€β”€β”€β”€ package.json
β”œβ”€β”€ package.json    <------- (this one!)
β”œβ”€β”€ turbo.json
β”œβ”€β”€ .stylelintrc.json
β”œβ”€β”€ .stylelintignore
β”œβ”€β”€ .editorconfig
package.json
{
    "lint": "turbo run lint --continue"
}

# Setup a project

# Install the packages

Open a terminal at the root of the project (packages/pkg-1 for this example) and install the following package:

pnpm add -D @workleap/stylelint-configs

# Configure Stylelint

First, create a configuration file named .stylelintrc.json at the root of the project:

workspace
β”œβ”€β”€ packages
β”œβ”€β”€β”€β”€ pkg-1
β”œβ”€β”€β”€β”€β”€β”€ src
β”œβ”€β”€β”€β”€β”€β”€β”€β”€ ...
β”œβ”€β”€β”€β”€β”€β”€ package.json
β”œβ”€β”€β”€β”€β”€β”€ .stylelintrc.json
β”œβ”€β”€ package.json
β”œβ”€β”€ .stylelintrc.json
β”œβ”€β”€ .stylelintignore
β”œβ”€β”€ .editorconfig

Then, open the newly created file and extend the default configuration with the shared configurations provided by @workleap/stylelint-configs:

packages/pkg-1/.stylelintrc.json
{
    "$schema": "https://json.schemastore.org/stylelintrc",
    "extends": "@workleap/stylelint-configs"
}

# Add a CLI script

Finally, add the following eslint script to your project package.json file. This script will be executed by Turborepo:

packages/pkg-1/package.json
{
    "stylelint": "stylelint \"**/*.css\" --allow-empty-input --cache --cache-location node_modules/.cache/stylelint --max-warnings=0"
}

# Custom configuration

New projects shouldn't have to customize the default configurations offered by @workleap/stylelint-configs. However, if you are in the process of migrating an existing project to use this library or encountering a challenging situation, refer to the custom configuration page to understand how to override or extend the default configurations. Remember, no locked in ❤️✌️.

# Try it 🚀

To test your new setup, open a CSS file, type invalid code (e.g. color: #fff), then save. Open a terminal at the root of the solution and execute the CLI script added earlier:

pnpm lint

The terminal should output a linting error.