Skip to content

Commit

Permalink
refactor: the project files
Browse files Browse the repository at this point in the history
package: updated
BREAKING: changed config options
  • Loading branch information
Saeid Ostad committed Jan 12, 2021
1 parent 174465b commit e627a19
Show file tree
Hide file tree
Showing 106 changed files with 18,677 additions and 8,454 deletions.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
setup.js
setup
docs
config/**/*.*
obfuscated/**/*.*
5 changes: 3 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
"rules": {
"@typescript-eslint/restrict-plus-operands": "error",
"@typescript-eslint/interface-name-prefix": 0,
"no-async-promise-executor": 1,
"no-async-promise-executor": "warn",
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/indent": 0,
"no-console": "warn",
"@typescript-eslint/camelcase": 0
"no-shadow": "warn",
"@typescript-eslint/explicit-module-boundary-types": 0
}
}
34 changes: 28 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz


pids
logs
results

npm-debug.log
node_modules
__test
.vscode
yarn-error.log
config.json
Database.ts
coverage
tmp
issues/
test/fixtures/test*

.idea
compile
out
obfuscated
dist
.env

generated
logs
configs.json
8 changes: 5 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.travis.yml
.npmrc
.env
config.json
*.log
docs
generated
*.ts
/src/**/*.*
/compile/**
obfuscated
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"trailingComma": "all",
"tabWidth": 2
}
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"typescript.tsdk": "node_modules\\typescript\\lib",
"cSpell.words": [
"sqlts"
]
}
Loading

0 comments on commit e627a19

Please sign in to comment.