0.0.9 • Published 6 months ago

@jkx5/eslint-config-base v0.0.9

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

eslint-config-base

npm i -D eslint @jkx5/eslint-config-base

Shared ESLint configuration for JavaScript projects

This ESLint configuration deactivates all formatting rules of ESLint and makes sure that Prettier is used for code beautifying.

Integrate into new project

  1. Install this package as devDependency
# with Yarn
$ yarn add -D @jkx5/eslint-config-base

# with npm
$ npm i -D @jkx5/eslint-config-base

# with pnpm
$ pnpm add -D @jkx5/eslint-config-base
  1. Install peer dependencies of this package in your project as devDependencies

Therefore, you can make use of the tool install-peerdeps:

# with Yarn
$ yarn dlx install-peerdeps --dev @jkx5/eslint-config-base

# with npm
$ npx install-peerdeps --dev @jkx5/eslint-config-base

#with pnpm
$ pnpm dlx install-peerdeps --dev @jkx5/eslint-config-base

Instead, you can do this manually by adding all entries part of the peerDependencies property (see package.json).

  1. Use ESLint config in your project

Create a .eslintrc.js file in project root with the following content:

module.exports = {
  extends: ["eslint:recommended", "@jkx5/eslint-config-base"],
};
0.0.9

6 months ago

0.0.8

6 months ago