aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-07Force reevaluation of autoformat settings at buffer write timeChris LaRose
2020-03-21Merge pull request #231 from ↵Mitermayer Reis
prettier/bugfix/issue-229-fixing-neovim-0-4-compatibility bugfix/issue-229-fixing-neovim-0-4-compatibility
2020-03-21bugfix/issue-229-fixing-neovim-0-4-compatibilitymitermayer
- Updated nvim test version to latest 0.4.3 on Dockerfile - Updated nvim async job to behave similar to vim8 - Removing support for python plugins since it has been archieved from repository - bumping prettier dep - updating snapshots
2020-02-18issues/214 - Fixing reference to wrong prettier cli versionmitermayer
- yarn lock was pointing to a broken prettier cli version
2020-02-16Merge pull request #225 from ParamagicDev/patch-1Mitermayer Reis
Fix readme to properly reflect how to downgrade
2020-02-15Fix readme to properly reflect how to downgradeKonnor Rogers
The current version of the readme returns a syntax error when attempting to downgrade. Added a '\' to fix the syntax error.
2020-02-15Fixing lintingmitermayer
- Fixing linting rules
2020-02-15Added support for prettier xml pluginmitermayer
- updated package.json deps - added tests - updated lock file
2020-02-15Adding support for the prettier lua pluginmitermayer
2020-02-15Adding support for prettier ruby pluginmitermayer
- Update docker container image to be able to run the prettier ruby plugin tests
2020-02-15Removing swift plugin supportmitermayer
- Unfortunetly the prettier swift plugin could not be installed in a linux box making testing development and maintainence of it very tricky
2020-02-15Adding support for prettier python pluginmitermayer
- 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
2020-02-13Including snapshots as part of assertionsmitermayer
- Having snapshots can help when debugging tests
2020-02-13Adding support for the php plugginmitermayer
- This adds support for the PHP prettier plugin - Fixes a bug where html overwrites php files parsers
2020-02-12Adding vue fixture testmitermayer
2020-02-12Adding yaml testing fixturemitermayer
2020-02-12Adding json testing fixturemitermayer
2020-02-12Adding fixture for graphqlmitermayer
2020-02-12Adding fixture tests for markdown filemitermayer
2020-02-12Addin formatting tests for htmlmitermayer
2020-02-12Adding test fixture for lessmitermayer
2020-02-12Adding test fixtures for scssmitermayer
2020-02-12Adding tests for typescriptmitermayer
2020-02-12Adding new tests fixturesmitermayer
- Adding fixture tests for css
2020-02-12Updating changelogmitermayer
2020-02-12Fixing dockerfilemitermayer
- Ensuring that we don't use the default image vim versions for testing
2020-02-09Merge pull request #224 from simnalamburt/autoformat_require_pragmaMitermayer Reis
New option: prettier#autoformat_require_pragma
2020-02-09New option: prettier#autoformat_require_pragmaHyeon Kim
The 'prettier#autoformat_config_present' option is useful but it only worked with files with pragma. Now, you can use 'autoformat_config_present' even with files without pragma using this 'autoformat_require_pragma' option.
2020-02-05Updating README.md message for alpha release instructions on how tomitermayer
fallback to older version
2020-02-05Updating yarn.lock filemitermayer
2020-02-05Updating README information in regards to fallback to older versions1.0.0-alphamitermayer
- We now made `release/1.x` default branch and added message to users to enable them to fallback to older branch
2020-02-05Merge pull request #175 from prettier/release/1.xMitermayer Reis
Release/1.x
2020-02-05Merge branch 'master' into release/1.xmitermayer
2020-02-05release/1.x - Bringing back filetype definitionsmitermayer
2020-01-08Merge pull request #212 from atomdmac/toggle-autoformat-by-configMitermayer Reis
Toggle the autoformat setting based on config file presence.
2019-11-18Merge pull request #217 from hankchiutw/161-safe-condition-check-ftpluginMitermayer Reis
Use `get()` to check `g:prettier#autoformat` safely in ftplugin
2019-11-06Use `get()` to check `g:prettier#autoformat` safely in ftpluginhank
Due to the fact that `plugin` will be loaded after `ftplugin`(http://vimdoc.sourceforge.net/htmldoc/filetype.html#ftplugin-overrule), even we set `g:prettier#autoformat` in plugin/prettier.vim, it's treated as undefined in ftplugin/*.vim. This happened when using `vim-pathogen`.
2019-10-13Clarify that autoformat will be overridden by config_presentAtom Mac
2019-10-13Fix linting issue: autoloaded func needed 'abort'Atom Mac
2019-10-12Add autoformat_config_* options to READMEAtom Mac
2019-10-09Update documentation to include autoformat_config_* options.Adam Macumber
2019-10-09Toggle the autoformat setting based on config file presence.Adam Macumber
2019-09-13Merge pull request #208 from prettier/making-auto-format-disabled-by-defaultMitermayer Reis
making-auto-format-disabled-by-default - Making autoformat disabled by
2019-09-14making-auto-format-disabled-by-default - Updating comment descriptionmitermayer
- updating comment description to match new behaviour
2019-09-14making-auto-format-disabled-by-default - Making autoformat disabled bymitermayer
default - This is a breaking change as on versions 0.x autoformat was enabled by default. This should ensure users dont need to disable autoformat anymore in their vimrc
2019-09-13Merge pull request #207 from prettier/issues/184-fixing-undo-stepMitermayer Reis
Issues/184 fixing undo step
2019-09-14issues/184-fixing-undo-step - fixing lintingmitermayer
2019-09-14issues/184-fixing-undo-step - Ensuring that autoformat does not getsmitermayer
trigger autoformat
2019-09-14issues/184-fixing-undo-step - Fixing undo stepmitermayer
- in order to bypass vimdefaults we can fake a change prior to formatting and merging that back to undostack operation
2019-09-14issues/184-fixing-undo-step - Writting should not trigger autocomandsmitermayer
- when formatting files we should not trigger auto commands