mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
style: add format checker config that matches FRR style standards
Also move .dir-locals.el to a sample file. This file should not be in the repository as it affects the user's ability to modify it. Signed-off-by: Christian Hopps <chopps@labn.net>
This commit is contained in:
parent
74aad5ab55
commit
960ab543cf
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -87,6 +87,7 @@
|
||||||
{arch}
|
{arch}
|
||||||
build
|
build
|
||||||
.cache
|
.cache
|
||||||
|
.dir-locals.el
|
||||||
.msg
|
.msg
|
||||||
.rebase-*
|
.rebase-*
|
||||||
*~
|
*~
|
||||||
|
|
2
.isort.cfg
Normal file
2
.isort.cfg
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[settings]
|
||||||
|
profile = black
|
|
@ -2,5 +2,8 @@
|
||||||
init-hook="import sys; sys.path.insert(0, '..')"
|
init-hook="import sys; sys.path.insert(0, '..')"
|
||||||
signature-mutators=common_config.retry,retry
|
signature-mutators=common_config.retry,retry
|
||||||
|
|
||||||
|
[FORMAT]
|
||||||
|
max-line-length = 88
|
||||||
|
|
||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
disable=I,C,R,W
|
disable=I,C,R,W
|
||||||
|
|
Loading…
Reference in a new issue