Skip to content

Commit

Permalink
Merge pull request #6 from fac31/CItool
Browse files Browse the repository at this point in the history
🤖 intitalised
  • Loading branch information
RGHANILOO authored Apr 15, 2024
2 parents e49a553 + 8a1a3cc commit 7d4cc37
Show file tree
Hide file tree
Showing 7 changed files with 672 additions and 1,971 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ dist/**/*

# ignore yarn.lock
yarn.lock


src/listeners
deploy-commands.ts
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Jana-Reza-Bot
# Jana-Reza-Bot

To start
`npm run start`
This will run the bot using ts-node
17 changes: 17 additions & 0 deletions eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"rules": {
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/consistent-type-definitions": ["error", "type"]
},
"env": {
"browser": true,
"es2021": true
}
}
Loading

0 comments on commit 7d4cc37

Please sign in to comment.