pyproject.toml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. [build-system]
  2. requires = [
  3. "setuptools>=57",
  4. "wheel>=0.36.0",
  5. "build>=0.5.1",
  6. ]
  7. build-backend = "setuptools.build_meta"
  8. [tool.ruff]
  9. line-length = 106
  10. indent-width = 4
  11. [tool.ruff.format]
  12. quote-style = "single"
  13. indent-style = "tab"
  14. [tool.ruff.lint]
  15. ignore = [
  16. "E401", # multiple imports per line
  17. "E701", # multiple statements per line
  18. "E721", # use isinstance()
  19. "E731", # lambda instead of def
  20. "E402", # module import not top of file
  21. "E722", # bare except
  22. "E713", # membership 'not in'
  23. "E741", # ambiguous variable name
  24. ]
  25. [tool.ruff.lint.per-file-ignores]
  26. "mmgen/proto/eth/pyethereum/*" = [ "F401" ] # imported but unused
  27. "mmgen/proto/eth/rlp/sedes/*" = [ "F401" ] # imported but unused
  28. "mmgen/addrgen.py" = [ "F401" ] # imported but unused
  29. "mmgen/tool/*" = [
  30. "F722", # Syntax error in forward annotation
  31. "F821" # Undefined name `sstr`
  32. ]
  33. "test/include/common.py" = [ "F821" ] # undefined name 'cfg'
  34. "test/misc/input_func.py" = [ "F401" ] # imported but unused
  35. "test/modtest_d/cashaddr.py" = [ "F841" ] # assigned to but never used
  36. "test/modtest_d/dep.py" = [ "F401" ] # imported but unused
  37. "test/modtest_d/testdep.py" = [ "F401" ] # imported but unused
  38. "test/modtest_d/obj.py" = [ "F841" ] # assigned to but never used
  39. "test/objtest_d/*" = [ "F401" ] # imported but unused
  40. "test/objattrtest_d/*" = [ "F401" ] # imported but unused
  41. "test/overlay/fakemods/*" = [ "F403", "F405" ] # `import *` used
  42. "test/*.py" = [ "F401" ] # imported but unused
  43. "test/colortest.py" = [ "F403", "F405" ] # `import *` used
  44. "test/tooltest2.py" = [ "F403", "F405" ] # `import *` used
  45. [tool.pylint.format]
  46. indent-string = "\t"
  47. indent-after-paren = 2
  48. max-line-length = 106
  49. [tool.pylint.main]
  50. recursive = true
  51. jobs = 0
  52. ignore = [
  53. "data",
  54. "wordlist",
  55. "pyethereum",
  56. "rlp",
  57. "main_split.py",
  58. "tx.py",
  59. ]
  60. ignored-modules = [ # ignored for no-member, otherwise checked
  61. "mmgen.proto.secp256k1.secp256k1",
  62. "mmgen.term",
  63. "msvcrt",
  64. "gmpy2",
  65. ]
  66. [tool.pylint."messages control"]
  67. disable = [
  68. "raw-checker-failed",
  69. "bad-inline-option",
  70. "locally-disabled",
  71. "file-ignored",
  72. "suppressed-message",
  73. "useless-suppression",
  74. "deprecated-pragma",
  75. "use-symbolic-message-instead",
  76. "use-implicit-booleaness-not-comparison-to-string",
  77. "use-implicit-booleaness-not-comparison-to-zero",
  78. "not-async-context-manager",
  79. # non-default:
  80. "no-method-argument",
  81. "function-redefined",
  82. "method-hidden",
  83. ]
  84. [tool.pylint.miscellaneous]
  85. notes = ["FIXME", "TODO", "DEBUG", "WIP"]
  86. [tool.pylint.typecheck]
  87. mixin-class-rgx = """.*[Mm]ixin|\
  88. ^(Hilite|InitErrors|DummyWIF|\
  89. cfg_file|cfg_file_sample|\
  90. MoneroMMGenFile|keygen_base|xmr_signable|\
  91. CmdTestShared)$"""
  92. ignored-classes = [ # ignored for no-member, otherwise checked
  93. "optparse.Values",
  94. "thread._local",
  95. "_thread._local",
  96. "argparse.Namespace",
  97. # mmgen:
  98. "baseconv",
  99. "mmgen.autosign.Signable.base",
  100. "mmgen.autosign.Autosign", # tx_dir, etc. created dynamically
  101. "Sha2",
  102. "mmgen.xmrwallet.file.MoneroMMGenTX.Base",
  103. "mmgen.xmrwallet.file.MoneroWalletOutputsFile.Base",
  104. "mmgen.xmrwallet.ops.sweep.OpSweep",
  105. "mmgen.xmrwallet.ops.wallet.OpWallet",
  106. "mmgen.xmrwallet.ops.label.OpLabel",
  107. "mmgen.xmrwallet.ops.new.OpNew",
  108. "mmgen.xmrwallet.ops.txview.OpTxview",
  109. "mmgen.xmrwallet.file.outputs.MoneroWalletOutputsFile.Base",
  110. "mmgen.xmrwallet.file.tx.MoneroMMGenTX.Base",
  111. "mmgen.proto.eth.tx.Completed",
  112. "TxInfo",
  113. "TwRPC",
  114. "MnemonicEntry",
  115. "MMGenObjectDevTools",
  116. "MnEntryMode",
  117. "deserialized_tx",
  118. # test suite:
  119. "TestHashFunc",
  120. "GenTool",
  121. "VirtBlockDeviceBase",
  122. "SwapMgrBase",
  123. "Opts",
  124. "Help",
  125. "FFI_override",
  126. "RPC",
  127. ]