Created
May 20, 2026 17:19
-
-
Save chrisblackwell/4d4a6295067527c93dd41928850f6a69 to your computer and use it in GitHub Desktop.
ESLint configuration file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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