3.0.0 • Published 4 months ago

eslint-config-antoine v3.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

eslint-config-antoine

ESLint configurations for React/TypeScript projects using ESLint v9.

Installation

npm install --save-dev eslint@latest prettier@latest eslint-config-antoine@latest

Usage

Create an eslint.config.js file in your project root:

import antoine from "eslint-config-antoine";

export default [
  ...antoine,
  // Your additional rules here...
];

Features

  • 🎯 TypeScript and React best practices
  • 🎨 Prettier integration
  • ⚡️ Zero config setup
  • 🔄 Auto-detects React version
  • 🚀 Fully supports ESLint v9 flat config

Migration from v1.x

If you're migrating from v1.x (ESLint v8):

  1. Update your ESLint to v9:

    npm install --save-dev eslint@^9.0.0
  2. Replace your .eslintrc.js with a new eslint.config.js:

    import antoine from "eslint-config-antoine";
    
    export default [
      ...antoine,
      // Your additional rules here...
    ];
  3. Make sure your package.json has "type": "module" if you're using import/export syntax.

3.0.0

4 months ago

1.0.14

1 year ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago