@team23/eslint-config-team23-standard
Version:
A set of eslint rules used by TEAM23 for standard js projects
45 lines (32 loc) • 1.15 kB
Markdown
A comprehensive ESLint configuration used by TEAM23 for maintaining consistent and strict JavaScript coding standards.
This package includes a combination of stylistic and rigorous rule sets to ensure high code quality across JavaScript projects.
Add the library to your `package.json` as `devDependency`
```bash
npm i --save-dev @team23/eslint-config-team23-standard
```
To use the shareable config, import the package inside an `eslint.config.js` file and add it to the exported array:
```ts
// eslint.config.js
import { createJSEslintConfig } from "@team23/eslint-config-team23-standard";
export default [
...createJSEslintConfig(),
];
```
You can override settings from the shareable config by adding them directly into your eslint.config.js
file after importing the shareable config. For example:
```ts
import { createJSEslintConfig } from "@team23/eslint-config-team23-standard";
export default [
...createJSEslintConfig(),
{
files: ['*.js'],
rules: {
"no-magic-numbers": ["off"]
}
}
];
```