Files
pezkuwichain 5d54192e6d chore: update copyright years to 2026 and fix lint issues
- Update all copyright headers from 2025 to 2026
- Fix @polkadot references to @pezkuwi in config files
- Fix eslint.config.js import path

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-09 01:22:46 +03:00

20 lines
369 B
JavaScript

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