Files
pezkuwi-extension/eslint.config.js
T

20 lines
371 B
JavaScript

// Copyright 2017-2025 @polkadot/extension authors & contributors
// SPDX-License-Identifier: Apache-2.0
import baseConfig from '@polkadot/dev/config/eslint';
export default [
...baseConfig,
{
rules: {
'import/extensions': 'off'
}
},
{
files: ['**/*.spec.ts', '**/*.spec.tsx'],
rules: {
'deprecation/deprecation': 'off'
}
}
];