xch-blockchain/.isort.cfg

217 lines
7.5 KiB
INI

[settings]
line_length = 120
profile=black
skip_gitignore=true
add_imports=from __future__ import annotations
# venv/bin/isort --check . |& sed -n "s;ERROR: ${PWD}/\(.*\) Imports are.*; \1;p" | sort | uniq
extend_skip=
chia/clvm/spend_sim.py
chia/cmds/chia.py
chia/cmds/db.py
chia/cmds/db_upgrade_func.py
chia/cmds/farm_funcs.py
chia/cmds/farm.py
chia/cmds/init_funcs.py
chia/cmds/init.py
chia/cmds/keys_funcs.py
chia/cmds/keys.py
chia/cmds/netspace.py
chia/cmds/passphrase_funcs.py
chia/cmds/passphrase.py
chia/cmds/plotnft_funcs.py
chia/cmds/plotnft.py
chia/cmds/plotters.py
chia/cmds/show.py
chia/cmds/start_funcs.py
chia/cmds/start.py
chia/cmds/wallet_funcs.py
chia/cmds/wallet.py
chia/daemon/keychain_proxy.py
chia/daemon/keychain_server.py
chia/daemon/server.py
chia/full_node/block_height_map.py
chia/full_node/block_store.py
chia/full_node/bundle_tools.py
chia/full_node/coin_store.py
chia/full_node/full_node_api.py
chia/full_node/full_node.py
chia/full_node/generator.py
chia/full_node/hint_store.py
chia/full_node/lock_queue.py
chia/full_node/mempool_check_conditions.py
chia/full_node/mempool_manager.py
chia/full_node/weight_proof.py
chia/introducer/introducer.py
chia/plotters/bladebit.py
chia/plotters/chiapos.py
chia/plotters/madmax.py
chia/plotters/plotters.py
chia/pools/pool_puzzles.py
chia/pools/pool_wallet_info.py
chia/pools/pool_wallet.py
chia/protocols/pool_protocol.py
chia/protocols/protocol_state_machine.py
chia/rpc/full_node_rpc_client.py
chia/rpc/rpc_client.py
chia/rpc/wallet_rpc_api.py
chia/rpc/wallet_rpc_client.py
chia/seeder/crawler.py
chia/seeder/crawl_store.py
chia/seeder/dns_server.py
chia/server/address_manager_sqlite_store.py
chia/server/address_manager_store.py
chia/server/introducer_peers.py
chia/server/node_discovery.py
chia/server/peer_store_resolver.py
chia/server/reconnect_task.py
chia/server/start_service.py
chia/server/start_wallet.py
chia/simulator/simulator_constants.py
chia/simulator/start_simulator.py
chia/ssl/create_ssl.py
chia/timelord/timelord_launcher.py
chia/types/blockchain_format/program.py
chia/types/blockchain_format/proof_of_space.py
chia/types/blockchain_format/vdf.py
chia/types/coin_solution.py
chia/types/coin_spend.py
chia/types/full_block.py
chia/types/generator_types.py
chia/types/name_puzzle_condition.py
chia/types/spend_bundle.py
chia/util/bech32m.py
chia/util/byte_types.py
chia/util/chain_utils.py
chia/util/check_fork_next_block.py
chia/util/chia_logging.py
chia/util/condition_tools.py
chia/util/dump_keyring.py
chia/util/files.py
chia/util/generator_tools.py
chia/util/keychain.py
chia/util/keyring_wrapper.py
chia/util/log_exceptions.py
chia/util/network.py
chia/util/profiler.py
chia/util/service_groups.py
chia/util/ssl_check.py
chia/util/ws_message.py
chia/wallet/cat_wallet/cat_info.py
chia/wallet/cat_wallet/cat_utils.py
chia/wallet/cat_wallet/cat_wallet.py
chia/wallet/derive_keys.py
chia/wallet/did_wallet/did_info.py
chia/wallet/did_wallet/did_wallet_puzzles.py
chia/wallet/did_wallet/did_wallet.py
chia/wallet/lineage_proof.py
chia/wallet/payment.py
chia/wallet/puzzles/load_clvm.py
chia/wallet/puzzles/prefarm/make_prefarm_ph.py
chia/wallet/puzzles/prefarm/spend_prefarm.py
chia/wallet/puzzles/puzzle_utils.py
chia/wallet/puzzles/singleton_top_layer.py
chia/wallet/puzzles/tails.py
chia/wallet/sign_coin_spends.py
chia/wallet/trade_manager.py
chia/wallet/trade_record.py
chia/wallet/trading/offer.py
chia/wallet/trading/trade_store.py
chia/wallet/transaction_record.py
chia/wallet/util/compute_hints.py
chia/wallet/util/compute_memos.py
chia/wallet/util/debug_spend_bundle.py
chia/wallet/util/puzzle_compression.py
chia/wallet/util/wallet_sync_utils.py
chia/wallet/wallet_blockchain.py
chia/wallet/wallet_coin_store.py
chia/wallet/wallet_interested_store.py
chia/wallet/wallet_node_api.py
chia/wallet/wallet_node.py
chia/wallet/wallet_pool_store.py
chia/wallet/wallet.py
chia/wallet/wallet_state_manager.py
chia/wallet/wallet_weight_proof_handler.py
tests/blockchain/test_blockchain.py
tests/blockchain/test_blockchain_transactions.py
tests/block_tools.py
tests/build-init-files.py
tests/build-workflows.py
tests/clvm/benchmark_costs.py
tests/clvm/coin_store.py
tests/clvm/test_chialisp_deserialization.py
tests/clvm/test_program.py
tests/clvm/test_puzzle_compression.py
tests/clvm/test_serialized_program.py
tests/clvm/test_singletons.py
tests/clvm/test_spend_sim.py
tests/conftest.py
tests/core/cmds/test_keys.py
tests/core/custom_types/test_coin.py
tests/core/custom_types/test_spend_bundle.py
tests/core/daemon/test_daemon.py
tests/core/full_node/full_sync/test_full_sync.py
tests/core/full_node/ram_db.py
tests/core/full_node/stores/test_block_store.py
tests/core/full_node/stores/test_coin_store.py
tests/core/full_node/stores/test_full_node_store.py
tests/core/full_node/stores/test_hint_store.py
tests/core/full_node/test_block_height_map.py
tests/core/full_node/test_conditions.py
tests/core/full_node/test_full_node.py
tests/core/full_node/test_mempool_performance.py
tests/core/full_node/test_mempool.py
tests/core/full_node/test_performance.py
tests/core/server/test_dos.py
tests/core/server/test_rate_limits.py
tests/core/ssl/test_ssl.py
tests/core/test_daemon_rpc.py
tests/core/test_db_conversion.py
tests/core/test_filter.py
tests/core/test_full_node_rpc.py
tests/core/util/test_cached_bls.py
tests/core/util/test_config.py
tests/core/util/test_file_keyring_synchronization.py
tests/core/util/test_files.py
tests/core/util/test_keychain.py
tests/core/util/test_keyring_wrapper.py
tests/generator/test_compression.py
tests/generator/test_generator_types.py
tests/generator/test_list_to_batches.py
tests/generator/test_rom.py
tests/generator/test_scan.py
tests/pools/test_pool_cmdline.py
tests/pools/test_pool_config.py
tests/pools/test_pool_puzzles_lifecycle.py
tests/pools/test_pool_rpc.py
tests/pools/test_wallet_pool_store.py
tests/setup_nodes.py
tests/simulation/test_simulation.py
tests/util/benchmark_cost.py
tests/util/blockchain.py
tests/util/build_network_protocol_files.py
tests/util/db_connection.py
tests/util/keyring.py
tests/util/key_tool.py
tests/util/network_protocol_data.py
tests/util/test_lock_queue.py
tests/util/test_misc.py
tests/util/test_network_protocol_files.py
tests/util/test_network.py
tests/util/test_struct_stream.py
tests/wallet/cat_wallet/test_cat_lifecycle.py
tests/wallet/cat_wallet/test_cat_wallet.py
tests/wallet/cat_wallet/test_offer_lifecycle.py
tests/wallet/did_wallet/test_did.py
tests/wallet/did_wallet/test_did_rpc.py
tests/wallet/simple_sync/test_simple_sync_protocol.py
tests/wallet/test_singleton_lifecycle_fast.py
tests/wallet/test_singleton_lifecycle.py
tests/wallet/test_singleton.py
tests/wallet/test_wallet_blockchain.py
tests/wallet/test_wallet_interested_store.py
tests/wallet/test_wallet_key_val_store.py
tests/wallet/test_wallet.py
tests/wallet_tools.py
tests/weight_proof/test_weight_proof.py
tools/analyze-chain.py