mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-24 06:49:04 +03:00
16 lines
345 B
JavaScript
16 lines
345 B
JavaScript
|
module.exports = {
|
||
|
extends: "./.eslintrc.js",
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 9,
|
||
|
sourceType: "module",
|
||
|
project: "./tsconfig.json",
|
||
|
},
|
||
|
rules: {
|
||
|
"@typescript-eslint/no-base-to-string": "error",
|
||
|
"@typescript-eslint/no-unnecessary-boolean-literal-compare": 2,
|
||
|
},
|
||
|
parserOptions: {
|
||
|
project: "./tsconfig.json"
|
||
|
},
|
||
|
};
|