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.
9 lines
160 B
JavaScript
9 lines
160 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ["people/playwright"],
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ["./tsconfig.json"],
|
|
},
|
|
};
|