Skip to main content
OpenCode automatically formats files after they are written or edited using language-specific formatters. This ensures that the code that is generated follows the code styles of your project.

Built-in Formatters

OpenCode comes with several built-in formatters for popular languages and frameworks. Below is a list of the formatters, supported file extensions, and commands or config options it needs. So if your project has prettier in your package.json, OpenCode will automatically use it.

How It Works

When OpenCode writes or edits a file, it:
  1. Checks the file extension against all enabled formatters.
  2. Runs the appropriate formatter command on the file.
  3. Applies the formatting changes automatically.
This process happens in the background, ensuring your code styles are maintained without any manual steps.

Configure Formatters

You can customize formatters through the formatter section in your OpenCode config.
opencode.json
Each formatter configuration supports the following:
formatter.{name}.disabled
boolean
Set this to true to disable the formatter.
formatter.{name}.command
string[]
The command to run for formatting. Use $FILE as a placeholder for the file path.
formatter.{name}.environment
object
Environment variables to set when running the formatter.
formatter.{name}.extensions
string[]
File extensions this formatter should handle.

Disabling Formatters

To disable all formatters globally, set formatter to false:
opencode.json
To disable a specific formatter, set disabled to true:
opencode.json

Custom Formatters

You can override the built-in formatters or add new ones by specifying the command, environment variables, and file extensions:
opencode.json
The $FILE placeholder in the command will be replaced with the path to the file being formatted.

Examples

Override Prettier Configuration

opencode.json

Add Custom Python Formatter

opencode.json

Configure Multiple Formatters

opencode.json