mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 05:37:20 +03:00
17 lines
341 B
JavaScript
17 lines
341 B
JavaScript
|
module.exports = {
|
||
|
"extends": "../.eslintrc.js",
|
||
|
/**
|
||
|
* ESLint rules
|
||
|
*
|
||
|
* All available rules: http://eslint.org/docs/rules/
|
||
|
*
|
||
|
* Rules take the following form:
|
||
|
* "rule-name", [severity, { opts }]
|
||
|
* Severity: 2 == error, 1 == warning, 0 == off.
|
||
|
*/
|
||
|
"rules": {
|
||
|
"no-console": 2,
|
||
|
"no-debugger": 2
|
||
|
}
|
||
|
};
|