mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 01:57:57 +00:00
17 lines
453 B
JavaScript
17 lines
453 B
JavaScript
// Copyright 2017-2026 @pezkuwi/apps authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import baseConfig from '@pezkuwi/dev/config/eslint';
|
|
|
|
export default [
|
|
...baseConfig,
|
|
{
|
|
rules: {
|
|
// add override for any (a metric ton of them, initial conversion)
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
// we generally use this in isFunction, not via calling
|
|
'@typescript-eslint/unbound-method': 'off'
|
|
}
|
|
}
|
|
];
|