mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f04bec5a15
Updates ESLint, the TypeScript ESLint plugins, and updates code where the rules have changed.
20 lines
428 B
JavaScript
20 lines
428 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,
|
|
{ allow: ['warn', 'error', 'assert', 'timeStamp', 'time', 'timeEnd'] },
|
|
],
|
|
'no-debugger': 0,
|
|
},
|
|
};
|