2.1.0 • Published 12 months ago

@ddadaal/eslint-config v2.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

@ddadaal/eslint-config

My eslint config.

Since v2.0, only eslint v9 is supported. Please stick to v1 if you cannot upgrade to eslint v9 yet.

Installation

Normal TypeScript Project

npm install -D @ddadaal/eslint-config eslint

Then create eslint.config.js with the following content:

const base = require("@ddadaal/eslint-config");

module.exports = [
    ...base,
]

React

First, set up the project as a normal TypeScript project, and then

# Install more packages
npm install -D eslint eslint-plugin-react
const base = require("@ddadaal/eslint-config");
// Add
const react = require("@ddadaal/eslint-config/react");

module.exports = [
    ...base,
    // Add
    ...react
]

License

MIT

2.1.0

12 months ago

2.0.0

12 months ago

1.9.0

3 years ago

1.8.0

3 years ago

1.7.1

3 years ago

1.7.0

3 years ago

1.5.2

3 years ago

1.6.0

3 years ago

1.5.1

3 years ago

1.5.0

3 years ago

1.4.0

3 years ago

1.2.0

3 years ago

1.3.0

3 years ago

1.2.1

3 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago