Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# http://editorconfig.org

root = true

[*]
Expand All @@ -10,7 +6,7 @@ end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

# Standard style
[*.{js}]
# TypeScript
[*.{ts,js,json}]
indent_style = space
indent_size = 2
indent_size = 4
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
root: true,
extends: [
'eslint:recommended',
],
env: {
node: true,
es2017: true
},
overrides: [
{
files: ['src/**'],
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'plugin:@typescript-eslint/recommended'
],
rules: {
'@typescript-eslint/explicit-module-boundary-types': [0],
'@typescript-eslint/no-explicit-any': [0]
}
}
]
};
12 changes: 0 additions & 12 deletions .eslintrc.json

This file was deleted.

72 changes: 7 additions & 65 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,66 +1,8 @@

# Created by https://www.gitignore.io/api/node

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.DS_Store
.envrc


# End of https://www.gitignore.io/api/node
.nyc_output/
.vercel
coverage/
dist/
docs/
node_modules/
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

64 changes: 0 additions & 64 deletions README.md

This file was deleted.

Loading