PrettyLint
Visual tool to generate and customize ESLint + Prettier configs.
Simplify your setup, avoid syntax errors, and make your code beautiful.
Available on VS Code Marketplace
You can install PrettyLint directly from the Extensions panel in VS Code:
- Open Extensions (
Ctrl + Shift + X)
- Search for "PrettyLint"
- Click Install
or install manually:
code --install-extension 0xnetspecter.pretty-lint
Features
Interactive Configurator
- ESLint & Prettier configuration via a webview UI
- Instant preview of all available rules and options
Smart Metadata
- All ESLint & Prettier settings are preloaded from JSON schemas
- Each rule has type, description, and possible values
One-click generation
- Instantly creates
.eslintrc.json and .prettierrc files in your workspace
Persistent Settings
- Saves user preferences between sessions
Usage
Open Command Palette (Ctrl + Shift + P / Cmd + Shift + P / Ctrl + P)
Type and run one of the commands:
>Open Prettier Configurator
>Open ESLint Configurator
Adjust your preferences
Click Save & Generate — and your config files are created automatically!
Example Output
.prettierrc
{
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"printWidth": 100
}
| |