Skip to content

About

Flint’s TypeScript plugin supports linting JavaScript and TypeScript source code. It comes provided with the flint npm package.

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

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