Landon Schropp

Results 54 issues of Landon Schropp

Here's what I've done: 1. I added Hamlbars to the Gemfile: `gem 'hamlbars', '~> 2.1'`. We're already using `handlebars_assets`. 2. I created a new file file at `app/assets/javascripts/test.js.hbs.hamlbars`. 3. I...

The documentation in the readme is great, but it seems to be missing an example of testing a context Would it be possible to add one? Thanks!

It seems that some of the examples in the readme don't use the same syntax that's specified in the [antonmi/espec](https://github.com/antonmi/espec) repo. For example: ``` expect(new_changeset.errors).to have(error) ``` Should be: ```...

I've added the smart pipeline operator to my Babel config via a plugin. ``` json { "presets": [ "babel-preset-react-app" ], "plugins": [ [ "@babel/plugin-proposal-pipeline-operator", { "proposal": "smart" } ] ]...

feature

With other language servers, I'm usually able to install them via the language's package manager. For example, in Node.js I can install the language server package via Yarn or NPM:...

### Feature motivation When all of the buffers are closed, LunarVim currently displays an empty buffer. This can be a tiny bit annoying, especially if you close all of your...

enhancement

**Is your feature request related to a problem? Please describe.** In my prior Neovim syntax, when working on a JavaScript file, if I type `/**` and hit enter, the editor...

enhancement
indent

### Current behavior My team is trying to test a component that consumes a MobX wrapper like this: ``` let component = mount( ); ``` In this simplified example, `Awesome`'s...

I have my project set up to use the smart pipeline operator via the `babel/plugin-proposal-pipeline-operator` plugin. When I'm in a file using this operator, importjs fails to import my modules...

I'm trying to get ImportJS to automatically import Lodash for me. Here's what my config looks like: ``` module.exports = { aliases: { _: "lodash", }, danglingCommas: false, maxLineLength: 100...