This package includes the shareable ESLint configuration used by SEEK.
The easiest way to use this configuration is with sku or skuba.
You don’t need to install it separately in sku and skuba projects.
If you want to use this ESLint configuration in a project not built with sku or skuba, you can install it with following steps.
First, install this package, and the necessary peer dependencies listed in this project's package.json.
Then create a file named eslint.config.js
with the following contents in the root folder of your project:
module.exports = require('eslint-config-seek');
The default configuration includes support for React projects. For projects that are not based on React, the "base" configuration should be used instead:
module.exports = require('eslint-config-seek/base');
You can override the settings from eslint-config-seek
by editing the eslint.config.js
file. Learn more about configuring ESLint on the ESLint website.
MIT.