Skip to content

Commit

Permalink
make random reminder even more infrequent to increase its effectiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
hchiam committed Jul 28, 2019
1 parent 2508707 commit 455da16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "custom-vscode-linter",
"displayName": "custom-vscode-linter",
"description": "Custom VSCode Linter!",
"version": "0.6.2",
"version": "0.6.3",
"publisher": "hchiam",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export function activate(context: vscode.ExtensionContext) {

function randomIeReminder() {
let min = 1;
let max = 70;
let max = 140;
let randomNumber = min + Math.floor(Math.random() * max);
let message = ''

Expand Down

0 comments on commit 455da16

Please sign in to comment.