1.5.0 • Published 9 months ago

@cargosense/eslint-config v1.5.0

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

eslint-config

Shareable ESLint configuration.

npm Downloads Build

Installation

npm install --save-dev @cargosense/eslint-config

Usage

Using ECMAScript module (ESM) syntax:

// eslint.config.js
export { default } from "@cargosense/eslint-config";

You may also apply this shared configuration to your project's customized configuration:

// eslint.config.js
import config from "@cargosense/eslint-config";

export default [
  ...config,

  {
    "rules": {
      // …
    },
  },
];

!TIP ESLint is extremely customizable. Refer to the documentation for details.

License

eslint-config is freely available under the MIT License.