Skip to content

Commit

Permalink
added:
Browse files Browse the repository at this point in the history
eslint
env
redis
redis adapter
  • Loading branch information
SupertigerDev committed Apr 17, 2022
1 parent 06bd0b3 commit 56819d8
Show file tree
Hide file tree
Showing 7 changed files with 3,087 additions and 63 deletions.
36 changes: 36 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
module.exports = {
'env': {
'es2021': true,
'node': true
},
'extends': [
'eslint:recommended',
'plugin:@typescript-eslint/recommended'
],
'parser': '@typescript-eslint/parser',
'parserOptions': {
'ecmaVersion': 'latest',
'sourceType': 'module'
},
'plugins': [
'@typescript-eslint'
],
'rules': {
'indent': [
'error',
2
],
'linebreak-style': [
'error',
'windows'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'always'
]
}
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
src/common/env.ts
# Logs
logs
*.log
Expand Down
Loading

0 comments on commit 56819d8

Please sign in to comment.