Skip to content

Commit

Permalink
cleanup stuff in fitness
Browse files Browse the repository at this point in the history
  • Loading branch information
hellos3b committed Jan 30, 2024
1 parent b0e124d commit 94c9dda
Show file tree
Hide file tree
Showing 10 changed files with 403 additions and 399 deletions.
19 changes: 19 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"env": {
"node": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-namespace": 0,
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
"@typescript-eslint/ban-ts-comment": "off"
}
}
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"tabWidth": 3
}
41 changes: 0 additions & 41 deletions bot/.eslintrc

This file was deleted.

3 changes: 2 additions & 1 deletion bot/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"forceConsistentCasingInFileNames": true,
"target": "ESNext",
"outDir": "build",
"allowJs": true
"allowJs": true,
"checkJs": false
},
"include": [
"src"
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"chalk": "^5.0.1",
"dotenv": "^16.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.2",
"semver": "^7.3.7",
"tsx": "^3.9.0"
}
Expand Down
Loading

0 comments on commit 94c9dda

Please sign in to comment.