Jacob Greenfield
Jacob Greenfield
I was talking about something more like this: https://developer.apple.com/library/mac/documentation/AppleScript/Conceptual/AppleScriptX/Concepts/scriptable_apps.html
What I meant was I wanted BeardedSpice to be able to execute Javascript in Electron apps. I was using AppleScript as a potential medium for doing this. On a Mac,...
@joshaber Seems interesting and complicated. How should I begin approaching this?
@ljharb Now that airbnb/babel-preset-airbnb#37 has been merged, is this ready too?
@j-f1 It was breaking tests for autocomplete because the tests compare the input HTML to the autocompleted HTML, and it was breaking the smart "hover" functionality (selecting an open tag...
@lydell Yes I can see that this would work, as Prettier only checks for the `html` template tag, as demonstrated by the code I linked. However this clearly is a...
IMHO the user never expects a formatter to behave differently based on the content of an identifier, so this is a bug. Naming a variable differently should not affect how...
@bakkot I agree, hence the "IMHO" :) @lydell Interesting. Now that you mention this, it seems to me current behavior makes sense as a default. However, I still feel that...
How about extending the existing [HTML Whitespace Sensitivity](https://prettier.io/docs/en/options.html#html-whitespace-sensitivity) option? Instead of a string, you may also opt to pass an object, for example: ```js { htmlWhitespaceSensitivity: { all: "css", templateString:...