11 lines
233 B
JavaScript
11 lines
233 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
// This tells ESLint to load the config from the package `eslint-config-custom`
|
||
|
extends: ['@myturborepo/eslint-config-custom'],
|
||
|
settings: {
|
||
|
next: {
|
||
|
rootDir: ['apps/*/'],
|
||
|
},
|
||
|
},
|
||
|
}
|