mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 12:57:52 +00:00
1505933826
Instead of optionsMain exporting an async function, this commit changes it to return a promise instead. We split all the needed async helpers for this config builder into smaller promises, in `src/options/*`. Another side effect of this is that we perform all our async config inferring in parallel, which speeds up the nativefier CLI. Add proper unit tests as well for all of these promises. Switch to Jest for these unit tests, and we are temporarily running both Jest and mocha together in `npm test`. To refactor all the Mocha code to use Jest in a future commit.
12 lines
399 B
YAML
12 lines
399 B
YAML
extends: airbnb-base
|
|
env:
|
|
# TODO: find out how to turn this on only for src/**/*.test.js files
|
|
jest: true
|
|
plugins:
|
|
- import
|
|
rules:
|
|
# TODO: Remove this when we have shifted away from the async package
|
|
no-shadow: 'warn'
|
|
# Gulpfiles and tests use dev dependencies
|
|
import/no-extraneous-dependencies: ['error', { devDependencies: ['gulpfile.babel.js', 'gulp/**/**.js', 'test/**/**.js']}]
|