diff options
| author | Mitermayer Reis <mitermayer.reis@gmail.com> | 2017-10-03 22:55:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-03 22:55:56 -0700 |
| commit | f520800ddf0b092e8c34277c96d630bc3171fd8b (patch) | |
| tree | 786f8daee955db01b423b1ade55aeafb5d0373c1 /ftplugin | |
| parent | 3cde181b6b5481496b21bd35b832bdee25df267d (diff) | |
| parent | bea51845924b743e2aa6e3a16e0729e67041fa9c (diff) | |
| download | vim-prettier-f520800ddf0b092e8c34277c96d630bc3171fd8b.tar.xz | |
Merge pull request #61 from prettier/issue/60-allow-overrides-using-stdin-filepath
bug: Fixing config overwrite value for non js by levaraging --stdin-f…
Diffstat (limited to 'ftplugin')
| -rw-r--r-- | ftplugin/css.vim | 5 | ||||
| -rw-r--r-- | ftplugin/graphql.vim | 5 | ||||
| -rw-r--r-- | ftplugin/json.vim | 6 | ||||
| -rw-r--r-- | ftplugin/less.vim | 5 | ||||
| -rw-r--r-- | ftplugin/scss.vim | 5 | ||||
| -rw-r--r-- | ftplugin/typescript.vim | 5 |
6 files changed, 0 insertions, 31 deletions
diff --git a/ftplugin/css.vim b/ftplugin/css.vim index e054380..bc2aec7 100644 --- a/ftplugin/css.vim +++ b/ftplugin/css.vim @@ -1,8 +1,3 @@ -let b:prettier_ft_default_args = { - \ 'parser': 'css', - \ 'configPrecedence': 'cli-override', - \ } - augroup Prettier autocmd! if g:prettier#autoformat diff --git a/ftplugin/graphql.vim b/ftplugin/graphql.vim index b1905e3..bc2aec7 100644 --- a/ftplugin/graphql.vim +++ b/ftplugin/graphql.vim @@ -1,8 +1,3 @@ -let b:prettier_ft_default_args = { - \ 'parser': 'graphql', - \ 'configPrecedence': 'cli-override', - \ } - augroup Prettier autocmd! if g:prettier#autoformat diff --git a/ftplugin/json.vim b/ftplugin/json.vim index e911839..bc2aec7 100644 --- a/ftplugin/json.vim +++ b/ftplugin/json.vim @@ -1,9 +1,3 @@ -let b:prettier_ft_default_args = { - \ 'parser': 'json', - \ 'trailingComma': 'none', - \ 'configPrecedence': 'cli-override', - \ } - augroup Prettier autocmd! if g:prettier#autoformat diff --git a/ftplugin/less.vim b/ftplugin/less.vim index a959e7c..bc2aec7 100644 --- a/ftplugin/less.vim +++ b/ftplugin/less.vim @@ -1,8 +1,3 @@ -let b:prettier_ft_default_args = { - \ 'parser': 'less', - \ 'configPrecedence': 'cli-override', - \ } - augroup Prettier autocmd! if g:prettier#autoformat diff --git a/ftplugin/scss.vim b/ftplugin/scss.vim index f20fc25..bc2aec7 100644 --- a/ftplugin/scss.vim +++ b/ftplugin/scss.vim @@ -1,8 +1,3 @@ -let b:prettier_ft_default_args = { - \ 'parser': 'scss', - \ 'configPrecedence': 'cli-override', - \ } - augroup Prettier autocmd! if g:prettier#autoformat diff --git a/ftplugin/typescript.vim b/ftplugin/typescript.vim index a26be67..bc2aec7 100644 --- a/ftplugin/typescript.vim +++ b/ftplugin/typescript.vim @@ -1,8 +1,3 @@ -let b:prettier_ft_default_args = { - \ 'parser': 'typescript', - \ 'configPrecedence': 'cli-override', - \ } - augroup Prettier autocmd! if g:prettier#autoformat |
