setup.cfg 522 Bytes
Newer Older
1
2
3
4
5
[isort]
ensure_newline_before_comments = True
force_grid_wrap = 0
include_trailing_comma = True
known_first_party = transformers
6
known_third_party =
7
    absl
8
9
10
    fairseq
    fastprogress
    git
11
    h5py
12
    MeCab
13
    nltk
14
    numpy
15
16
17
18
19
    packaging
    PIL
    psutil
    seqeval
    sklearn
20
    tensorflow
21
22
23
24
25
    tensorboardX
    tensorflow_datasets
    torchtext
    torchvision

26
27
28
29
line_length = 119
lines_after_imports = 2
multi_line_output = 3
use_parentheses = True
30
31

[flake8]
32
ignore = E203, E501, W503
33
max-line-length = 119