Skip to content

Instantly share code, notes, and snippets.

@chrisblackwell
Created May 20, 2026 17:19
Show Gist options
  • Select an option

  • Save chrisblackwell/4d4a6295067527c93dd41928850f6a69 to your computer and use it in GitHub Desktop.

Select an option

Save chrisblackwell/4d4a6295067527c93dd41928850f6a69 to your computer and use it in GitHub Desktop.
ESLint configuration file
import { defineConfig } from "eslint/config";
export default defineConfig([
{
files: ["**/*.{js,ts,jsx,tsx}"],
rules: {
"max-lines": ["error", {
max: 500,
skipBlankLines: true,
skipComments: true,
}],
},
},
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment