Skip to content

Commit

Permalink
Merge pull request #20 from Adamant-im/dev
Browse files Browse the repository at this point in the history
v2.0.0
  • Loading branch information
adamant-al authored Jul 16, 2022
2 parents da62c2d + da55b9c commit 26eef52
Show file tree
Hide file tree
Showing 53 changed files with 6,542 additions and 2,245 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
parserOptions: {
ecmaVersion: 2020,
},
env: {
commonjs: true,
es2020: true,
node: true,
jest: true,
},
extends: [
'airbnb-base',
],
rules: {
'no-restricted-syntax': 'off',
'no-console': 'off',
'no-underscore-dangle': 'off',
'default-param-last': 'off',
},
};
59 changes: 11 additions & 48 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,67 +1,30 @@
# config environment variable files
config.json

# Code editors settings
.vscode

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

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

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# 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
*.lcov

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# idea (IDE) files
.idea/

# 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

# VS code files
.vscode/

# package-lock
package-lock.json
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 26eef52

Please sign in to comment.