2020-10-30 20:34:04 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-09-16 16:40:15 +00:00
|
|
|
module.exports = {
|
|
|
|
rules: {
|
2021-12-14 16:43:46 +00:00
|
|
|
'no-console': 'off',
|
|
|
|
|
2020-09-16 16:40:15 +00:00
|
|
|
// We still get the value of this rule, it just allows for dev deps
|
|
|
|
'import/no-extraneous-dependencies': [
|
|
|
|
'error',
|
|
|
|
{
|
|
|
|
devDependencies: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|