mirror of
https://github.com/ItsVipra/ProToots
synced 2024-11-10 06:04:20 +00:00
Disable console.log statements except for logging.js
This commit is contained in:
parent
fcd5eacf06
commit
5757905f08
2 changed files with 4 additions and 0 deletions
|
@ -11,3 +11,5 @@ parserOptions:
|
|||
ecmaVersion: latest
|
||||
sourceType: "module"
|
||||
|
||||
rules:
|
||||
no-console: error
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* eslint-disable no-console -- Logging should only be done with this module. */
|
||||
|
||||
export async function getLogging() {
|
||||
try {
|
||||
let { logging: optionValue } = await storage.sync.get("logging");
|
||||
|
|
Loading…
Reference in a new issue