1.0.1 • Published 12 months ago

@podium/eslint-config v1.0.1

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

@podium/eslint-config

Shared config for ESLint used in Podium projects.

Install

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

Usage

Create and add this to eslint.config.js:

import config from "@podium/eslint-config";

export default config;

The default config should cover most needs, but you can extend or override if you need to.

import config from "@podium/eslint-config";

export default [
	...config,
	/* Your customisations */
	{
		ignores: [".docusaurus/*"],
	},
];

If you do need to change the config, consider whether that change should happen here in the shared config so it applies to all repos.

1.0.1

12 months ago

1.0.0

12 months ago