butlerx
5 years ago
No known key found for this signature in database
GPG Key ID: B37CA765BAA89170
2 changed files with
9 additions and
1 deletions
-
.eslintrc.js
-
index.js
|
|
@ -21,6 +21,14 @@ module.exports = { |
|
|
|
'no-use-before-define': ['error', { functions: false }], |
|
|
|
'@typescript-eslint/no-use-before-define': ['error', { functions: false }], |
|
|
|
'import/prefer-default-export': 'off', |
|
|
|
'import/extensions': [ |
|
|
|
'error', |
|
|
|
'always', |
|
|
|
{ |
|
|
|
js: 'ignorePackages', |
|
|
|
ts: 'never', |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
settings: { |
|
|
|
'import/resolver': { |
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
|
#! /usr/bin/env node
|
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */ |
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires, import/no-unresolved */ |
|
|
|
|
|
|
|
const yargs = require('yargs'); |
|
|
|
const wetty = require('./dist').default; |
|
|
|