mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Add no console.log lint rule
This commit is contained in:
parent
929b9de6e0
commit
ae47d901a1
@ -5,6 +5,7 @@
|
|||||||
"prettier"
|
"prettier"
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
|
"no-console": ["error", { "allow": ["warn", "error"] }],
|
||||||
"flowtype/boolean-style": [
|
"flowtype/boolean-style": [
|
||||||
2,
|
2,
|
||||||
"boolean"
|
"boolean"
|
||||||
|
@ -25,7 +25,9 @@ export type Options = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const html2canvas = (element: HTMLElement, conf: ?Options): Promise<*> => {
|
const html2canvas = (element: HTMLElement, conf: ?Options): Promise<*> => {
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
if (typeof console === 'object' && typeof console.log === 'function') {
|
if (typeof console === 'object' && typeof console.log === 'function') {
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
console.log(`html2canvas ${__VERSION__}`);
|
console.log(`html2canvas ${__VERSION__}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user