From 82ad83f4053adbc59c130180cc1bddae30f63d97 Mon Sep 17 00:00:00 2001 From: mitermayer Date: Sat, 15 Feb 2020 02:59:41 +0000 Subject: Adding support for prettier python plugin - updating Dockerfile to include python3 on vim test bed image in order to work with prettier python plugin - prettier python plugin seems to require python3 to be available on the system --- Dockerfile | 1 + ftplugin/python.vim | 10 ++++++++++ tests/__snapshots__/formatting.test.js.snap | 18 ++++++++++++++++++ tests/fixtures/foo.py | 12 ++++++++++++ 4 files changed, 41 insertions(+) create mode 100644 ftplugin/python.vim create mode 100644 tests/fixtures/foo.py diff --git a/Dockerfile b/Dockerfile index 262d875..2c8ff50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,7 @@ ENV PACKAGES="\ bash \ git \ python \ + python3 \ py-pip \ nodejs \ npm \ diff --git a/ftplugin/python.vim b/ftplugin/python.vim new file mode 100644 index 0000000..15dccff --- /dev/null +++ b/ftplugin/python.vim @@ -0,0 +1,10 @@ +let b:prettier_ft_default_args = { + \ 'parser': 'python', + \ } + +augroup Prettier + autocmd! + if get(g:, 'prettier#autoformat') + autocmd BufWritePre *.py call prettier#Autoformat() + endif +augroup end diff --git a/tests/__snapshots__/formatting.test.js.snap b/tests/__snapshots__/formatting.test.js.snap index 67cd15b..205221b 100644 --- a/tests/__snapshots__/formatting.test.js.snap +++ b/tests/__snapshots__/formatting.test.js.snap @@ -156,6 +156,24 @@ $a = 'a'; $b = $a . $a . ' asda';" `; +exports[`Prettier formats foo.py file with :Prettier command 1`] = ` +"def foo(a, *, example=False, **kwargs): + print(\\"hello world\\", example) + + +def i18n_patterns(*urls, prefix_default_language=True): + pass" +`; + +exports[`Prettier formats foo.py file with :PrettierAsync command 1`] = ` +"def foo(a, *, example=False, **kwargs): + print(\\"hello world\\", example) + + +def i18n_patterns(*urls, prefix_default_language=True): + pass" +`; + exports[`Prettier formats foo.scss file with :Prettier command 1`] = ` ".redClass { background: \\"red\\"; diff --git a/tests/fixtures/foo.py b/tests/fixtures/foo.py new file mode 100644 index 0000000..b284e14 --- /dev/null +++ b/tests/fixtures/foo.py @@ -0,0 +1,12 @@ +def foo(a, + *, + example=False, **kwargs): + print( + "hello world", + example + ) +def i18n_patterns( + *urls, + prefix_default_language=True + ): + pass -- cgit v1.3