diff options
author | Christian Hopps <chopps@labn.net> | 2021-07-14 10:37:59 +0200 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2021-08-27 19:10:06 +0200 |
commit | 34ea6fafa9e74312cd08ccbf17080883ff80fcf4 (patch) | |
tree | 5569e8704386c8626d024a0c4637c908460d268d /.dir-locals.el | |
parent | Merge pull request #9480 from SaiGomathiN/pim-coverity (diff) | |
download | frr-34ea6fafa9e74312cd08ccbf17080883ff80fcf4.tar.xz frr-34ea6fafa9e74312cd08ccbf17080883ff80fcf4.zip |
tests: Update dir-locals
- format with black in emacs
- wrap text at 88 (black)
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index e47f245db..1332f7b6a 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -4,5 +4,7 @@ ((c-mode . ((indent-tabs-mode . t) (show-trailing-whitespace . t) - (c-basic-offset . 8) - ))) + (c-basic-offset . 8))) + (json-mode . ((js-indent-level 4))) + (python-mode . ((python-formatter . black) + (python-fill-column . 88)))) |