Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Simplify Settings by Relying on Users Setting Prettier Config #404

Merged
merged 4 commits into from
Aug 20, 2018

Commits on Aug 3, 2018

  1. Configuration menu
    Copy the full SHA
    27d3012 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2018

  1. feat(prettier): use Prettier to determine whether a file is formattable

    Instead of relying on the user to supply prettier-atom with a whole list of Atom scopes for each
    Prettier parser type, we instead rely on the new getFileInfo method from Prettier and let Prettier
    tell us whether or not a file is parseable. This will make future parser support automatic as well
    as allow Prettier plugins to work. Unfortunately, because we rely on this new feature from Prettier,
    it will mean that users will be forced to upgrade their local Prettier versions to be compatible.
    
    BREAKING CHANGE: Because prettier-atom now relies on the new `getFileInfo` method recently added to
    Prettier, if you are having prettier-atom use a local version of Prettier instead of the version
    that is packaged with the plugin, you will need to manually update your project's local Prettier
    version.
    robwise committed Aug 7, 2018
    Configuration menu
    Copy the full SHA
    03275d1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a7e5187 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2018

  1. feat(errors): do not display a popup for "undefined" error messages

    These messages were very annoying because many plugins do not properly define these and it tends to
    spam the user.
    robwise committed Aug 19, 2018
    Configuration menu
    Copy the full SHA
    d6a25f5 View commit details
    Browse the repository at this point in the history