Skip to content

Commit

Permalink
🔨 chore: code refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Jun 2, 2021
1 parent 134025c commit 0c2c918
Show file tree
Hide file tree
Showing 7 changed files with 631 additions and 285 deletions.
5 changes: 2 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
"es2021": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "@casper124578/eslint-config"],
"extends": ["@casper124578/eslint-config"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"]
}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.env
node_modules
node_modules
.vscode
4 changes: 2 additions & 2 deletions env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
declare namespace NodeJS {
export interface ProcessEnv {
GH_TOKEN?: string;
WAKATIME_API_KEY?: string;
GH_TOKEN: string | undefined;
WAKATIME_API_KEY: string | undefined;
}
}
Loading

0 comments on commit 0c2c918

Please sign in to comment.