1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32# eslint-config-ultra-mega
the best eslint config ๐ง๐ฅโ๏ธ
## use
`npm install eslint-config-ultra-mega --save-dev`
then in your eslint config file:
for ESM:
```js
import ultraMegaConfig from 'eslint-config-ultra-mega';
export default [
...ultraMegaConfig,
];
```
or for CJS:
```js
const ultraMegaConfig = require('eslint-config-ultra-mega');
module.exports = [
...ultraMegaConfig,
];
```
see the [eslint docs](https://eslint.org/docs/latest/extend/shareable-configs#using-a-shareable-config) for more information