14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
module.exports = {
|
|
root: true,
|
|
// This tells ESLint to load the config from the package `eslint-config-custom`
|
|
extends: ['custom', 'custom/rules'],
|
|
settings: {
|
|
next: {
|
|
rootDir: ['packages/web/'],
|
|
},
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
},
|
|
};
|