eslint.config.mjs 482 B

1234567891011121314151617
  1. import solanaConfig from '@solana/eslint-config-solana';
  2. import tseslint from 'typescript-eslint';
  3. export default tseslint.config([
  4. {
  5. files: ['**/*.ts', '**/*.(c|m)?js'],
  6. ignores: ['**/dist/**', '**/e2e/**'],
  7. extends: [solanaConfig],
  8. },
  9. {
  10. files: ['packages/nodes/**', 'packages/node-types/**'],
  11. rules: {
  12. 'sort-keys-fix/sort-keys-fix': 'off',
  13. 'typescript-sort-keys/interface': 'off',
  14. },
  15. },
  16. ]);