Getting Started with Conformance
Conformance is available on Enterprise plans
To set up Conformance in your repository, you must:
- Set up Vercel's private npm registry to install the necessary packages
- Install and initialize Conformance in your repository
If you've already set up Code Owners, you may have already completed some of these steps.
To enable Conformance for your Enterprise team, you'll need to request access through your Vercel account administrator.
Vercel distributes packages with the scope through our private npm registry, and requires that each user using the package authenticates through a Vercel account.
To use the private npm registry, you'll need to follow the documentation to:
- Set up your local environment – This should be completed by the team owner, but each member of your team will need to log in
- Set up Vercel – This should be completed by the team owner
- Optionally, set up Conformance for use with CI – This should be completed by the team owner
This section guides you through setting up Conformance for your repository.
The Conformance CLI is separate to the Vercel CLI, however it uses the Vercel CLI for authentication.
Before continuing, please ensure that the Vercel CLI is installed and that you are logged in.
Use the CLI to automatically initialize Conformance in your project. Start by running this command in your repository's root:
only works with Yarn version 2 or newer, for Yarn v1 use
After running, check the installation success by executing:
The Conformance command creates the following changes:
- First, it installs the CLI package in your root and every workspace , if your monorepo uses workspaces.
- It also adds a script to the field of every . This script runs Conformance.
- It adds any existing Conformance errors to allowlists, letting you start using Conformance without immediate fixes and allowing you to gradually resolve these allowlist entries over time. Learn more about Conformance Allowlists in the documentation.
Once you've reviewed these, open a pull request with the changes and merge it.
** This step assumes you have set up Code Owners.**
Conformance allows specific individuals to review modifications to allowlist files. Add a file at your repository's root:
Now, changes to allowlist files need a review from someone on before merging.
Learn more about wildcard syntax and syntax from Code Owners.
You can integrate Conformance in your CI to avoid merging errors into your code. To learn more, see Setting up your CI provider.
Was this helpful?