eslint-config-seekingalpha-typescript
This package includes the shareable ESLint config used by SeekingAlpha.
Installation
Install ESLint and all Peer Dependencies:
npm install eslint@9.30.1 typescript-eslint@8.35.1 --save-dev
Install SeekingAlpha shareable ESLint:
npm install eslint-config-seekingalpha-typescript@latest --save-dev
Usage
This shareable config includes all rules from following plugins:
Simply use the eslint.config.js in your project with the configuration:
import tsConfig from 'eslint-config-seekingalpha-typescript';
export default [
{
plugins: {
...tsConfig.plugins,
},
rules: {
...tsConfig.rules,
},
settings: {
...tsConfig.settings,
},
},
];
License
MIT © SeekingAlpha