Benjamin Gray
Benjamin Gray
The main repo uses Prettier, it would be best to be consistent with that. [This](https://github.com/atom/atom/blob/master/.prettierrc) is the Prettier config.
@fredoo07 That's unfortunate. Perhaps if you offered more to go on than "it doesn't work anymore", someone might be able to assist you. I just installed it from scratch, and...
I was advised to split it into independent PRs instead of trying for a monolith of changes.
The reason I made a separate package is to get the freedom of making massive changes, without the risk of breaking anything bundled with Atom. The history starts [here](https://github.com/atom/snippets/pull/288). If...
I guess there's two main parts to this question; how to handle arbitrary depth / size, and how to make it still be fast. Would it be possible (or a...
> Do people ever have very very long tag names? I don't even use HTML (currently). I'm just trying to make the parser as general as possible. I agreee that...
@timfallmk It shouldn't be disabled, just hidden. It seems the icon is too wide, and forces a vertical break. Additionally, `overflow-y` is set to hidden (by the status bar package),...
This package is just an interface for the language server, which is currently the [theia language server](https://github.com/theia-ide/typescript-language-server). It appears to have some sort of compile on save feature, but I'm...
@Lilalas This package sets [language specific settings](https://github.com/atom/language-python/blob/master/settings/language-python.cson), including `softTabs` to `true`. To change this, you can open `language-python` in settings and change the tab type there.
[Activation hooks](http://flight-manual.atom.io/hacking-atom/sections/package-word-count/#packagejson) look like a good approach. This will let the package load only when it's required (ie. a JS document is being used). This doesn't replace actual optimisation, but...