Justin Campbell

Results 26 comments of Justin Campbell

I avoided this by using the `Equal` method on a time instead: ``` go assert.T(t, time.Now().Equal(time.Unix(0, 0))) ```

As an aside, aliases only seem to work when they contain a forward slash: ```js aliases: { DS: "ember-data" } ``` does not do anything, but if I change it...

Here's my current config using the deprecated `namedExports` in case it helps anyone else: https://gist.github.com/justincampbell/0677cc71932b54cec5ae2e4f9d7f44b0

@trotzig Thanks! Unfortunately I do have `importDevDependencies: true` configured, but none of the bare/no-slash aliases I added to that config file are currently working, I just added them for completeness....

Also regarding the config file, @alisdair pointed out to me that maybe we could use https://github.com/ember-cli/ember-rfc176-data to generate the aliases and namedExports.

@trotzig Currently using Vim and ALE: ``` let g:ale_fixers = {} let g:ale_fixers['javascript'] = ['prettier', 'importjs'] ``` I initially tried vim-import-js, but when I realized ALE already supported it as...

@mildwonkey There's currently a setting file that has duration defaults (`~/.pomodoro/settings`): ``` daily_goal=8 default_break_duration=5 default_pomodoro_duration=25 default_tags=work ``` There's nothing CLI-specific in that config, but maybe it should have that option...

I'm going to work on this soon, but instead of the description above I'm going to structure it like Git hooks: ``` ~/.pomodoro current history settings hooks/ start status finish...