This package includes the shareable ESLint config used by SeekingAlpha.
Install ESLint and all Peer Dependencies:
npm install eslint@9.31.0 eslint-plugin-jest@29.0.1 eslint-plugin-testing-library@7.5.4 --save-dev
Install SeekingAlpha shareable ESLint:
npm install eslint-config-seekingalpha-tests@latest --save-dev
This configuration extended with following plugins:
Simply use the eslint.config.js in your project with the configuration:
import testsConfig from 'eslint-config-seekingalpha-tests';
export default [
{
plugins: {
...testsConfig.plugins,
},
rules: {
...testsConfig.rules,
},
},
];
MIT © SeekingAlpha