We want to lint the e2e tests, we export the eslint config from the app desk to a package in order to use it for the e2e tests and for our apps.
15 lines
254 B
JavaScript
15 lines
254 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['people/next'],
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
settings: {
|
|
next: {
|
|
rootDir: __dirname,
|
|
},
|
|
},
|
|
ignorePatterns: ['.eslintrc.js'],
|
|
};
|