mirror of
https://github.com/waku-org/js-waku.git
synced 2025-01-12 13:34:48 +00:00
0f7d63ef93
* setup a custom Logger with log level support * refactor codebase for to use new Logger with log levels * disallow usage of `debug` directly / only allow usage in/through custom Logger * remove `debug` from logger
16 lines
273 B
JavaScript
16 lines
273 B
JavaScript
module.exports = {
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: "./tsconfig.dev.json"
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ["src/logger/index.ts"],
|
|
rules: {
|
|
"no-console": "off",
|
|
"no-restricted-imports": "off"
|
|
}
|
|
}
|
|
]
|
|
};
|