17 lines
332 B
JavaScript
17 lines
332 B
JavaScript
|
// Copyright 2020 Signal Messenger, LLC
|
||
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
module.exports = {
|
||
|
rules: {
|
||
|
'no-console': 'off',
|
||
|
|
||
|
// We still get the value of this rule, it just allows for dev deps
|
||
|
'import/no-extraneous-dependencies': [
|
||
|
'error',
|
||
|
{
|
||
|
devDependencies: true,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
};
|