Skip to content

About

Flint’s YML plugin supports linting .yaml/.yml source code. It comes provided with the flint npm package.

Rules that find bugs and enforce good YML practices for most-to-all YML files.

flint.config.ts
import { defineConfig, yml } from "flint";
export default defineConfig({
use: [
{
files: yml.files.all,
rules: yml.presets.logical,
},
],
});
Made with ❤️‍🔥 in Boston by Josh Goldberg and contributors.