Files
extension/eslint.config.js
2026-03-12 19:27:39 +02:00

20 lines
371 B
JavaScript

// Copyright 2017-2026 @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'
}
}
];