UNPKG

404 BJavaScriptView Raw
1module.exports = {
2 extends: [
3 '@bigpopakap/eslint-config/node'
4 ],
5 rules: {
6 // Since this repo is mostly configs written in Javascript instead of Typescript
7 // without fancy module imports
8 '@typescript-eslint/no-var-requires': 'off',
9
10 // We also allow relative imports in this repo because they are usually
11 // very simple
12 'absolute-import/no-relative-path': 'off'
13 }
14};