Editor integration
To get the best experience with turbo
, Turborepo provides a few utilities for integrating with your editor.
JSON Schema for turbo.json
Turborepo uses JSON Schema to give you auto-complete in your
turbo.json
file. By including the $schema
key in your turbo.json
, your editor is able to
provide full documentation and linting in case you have invalid shapes or missing keys.
Older versions
If you are using Turborepo v1, use schema.v1.json
.
Handling environment variables is an important part of building applications in a Turborepo.
The eslint-config-turbo
package extends your ESLint setup to help you make sure you've taken care of all of your environment variables.
Turborepo LSP
Enable even more auto-complete and linting than provided by JSON Schema, with in-editor hinting for invalid globs, references to non-existent tasks or packages, and extra repository visibility tools.
Visit the VSCode Extension Marketplace to install.
Not using Visual Studio Code?
The language server can be used on any editors that support the Language Server Protocol. Log a request in our issue tracker to express your interest.
Was this helpful?