Eslint Config
OpenAlly Node.js Eslint configuration (Work for both JavaScript and TypeScript projects).
Requirements
Getting Started
This package is available in the Node Package Repository and can be easily installed with npm or yarn.
$ npm i -D @openally/config.eslint
$ yarn add @openally/config.eslint -D
Usage
Create a eslint.config.mjs
file in the root of your project and extend the @openally/eslint-config
configuration.
TypeScript
import { typescriptConfig } from "@openally/config.eslint";
export default typescriptConfig({
});
JavaScript
import { ESLintConfig } from "@openally/config.eslint";
export default [
...ESLintConfig,
];
License
MIT