sapling/eden/scm/.flake8
Jun Wu 1721f5f866 debugrebuildchangelog: support rebuild with lazy segmented changelog
Summary:
Switch debugrebuildchangelog from using revlog stream clone to lazy segment clone.
This removes the revlog techdebt and can be used as a way to repair
repos with broken segmented changelog. As we migrate off double-write backend we
can no longer migrate down to revlog then migrate up, and a full reclone can be
slow. So a partial reclone command that just recreates the segmented changelog
seems useful.

This command is one of the two commands that handle emergency situations
when segmented changelog related logic goes wrong. The other command
is the emergency clone mode, added by D27897892 (d1413bbbad), which assumes everything
related to segmented changelog is broken on Mononoke side and we still
need to commit and push. This command relies on segmented changelog
related features, such as hash<->location lookup, and clone on Mononoke
to work properly and the server having a compatible IdMap. So it might
not be able to address all issues if Mononoke goes wrong.

Reviewed By: DurhamG

Differential Revision: D28430885

fbshipit-source-id: 17357a33f6fda4a67d46e2c7e7be6653b530f499
2021-05-26 19:00:01 -07:00

74 lines
3.0 KiB
INI
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[flake8]
select =
F401, # module imported but unused
F402, # import module from line N shadowed by loop variable
F403, # from module import * used; unable to detect undefined names
F404, # future import(s) name after other statements
F405, # name may be undefined, or defined from star imports: module
F406, # from module import * only allowed at module level
F407, # an undefined __future__ feature name was imported
F601, # dictionary key name repeated with different values
F602, # dictionary key variable name repeated with different values
F621, # too many expressions in an assignment with star-unpacking
F622, # two or more starred expressions in an assignment (a, *b, *c = d)
F631, # assertion test is a tuple, which are always True
F701, # a break statement outside of a while or for loop
F702, # a continue statement outside of a while or for loop
F703, # a continue statement in a finally block in a loop
F704, # a yield or yield from statement outside of a function
F705, # a return statement with arguments inside a generator
F706, # a return statement outside of a function/method
F707, # an except: block as not the last exception handler
F811, # redefinition of unused name from line N
F812, # list comprehension redefines name from line N
F821, # undefined name name
F822, # undefined name name in __all__
F823, # local variable name … referenced before assignment
F831, # duplicate argument name in function definition
F841, # local variable name is assigned to but never used
E101, # indentation contains mixed spaces and tabs
E112, # expected an indented block
E113, # unexpected indentation
E133, # closing bracket is missing indentation
E223, # tab before operator
E224, # tab after operator
E242, # tab after ,
E272, # multiple spaces before keyword
E273, # tab after keyword
E274, # tab before keyword
E304, # blank lines found after function decorator
# BLACK can make lines longer than 80 characters
# E501, # line too long (82 > 79 characters)
E703, # statement ends with a semicolon
E704, # multiple statements on one line (def)
E711, # comparison to None should be if cond is None:
E712, # comparison to True should be if cond is True: or if cond:
E714, # test for object identity should be is not
E742, # do not define classes named l, O, or I
E743, # do not define functions named l, O, or I
E901, # SyntaxError or IndentationError
E902, # IOError
W191, # indentation contains tabs
W291, # trailing whitespace
W292, # no newline at end of file
W504, # line break after binary operator
W601, # .has_key() is deprecated, use in
W602, # deprecated form of raising exception
W603, # <> is deprecated, use !=
W604, # backticks are deprecated, use repr()
W605, # invalid escape sequence x
# dageval defined names
builtins =
ancestors,
children,
draft,
gcaall,
heads,
headsancestors,
obsolete,
parents,
public,
roots,
only,