Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mishkinf committed Jan 19, 2022
1 parent fb9984a commit 0eba8a1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ src/**
.gitignore
tsconfig.json
vsc-extension-quickstart.md
tslint.json
tslint.json
node_modules/
25 changes: 11 additions & 14 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
"rules": {
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"semicolon": [
true,
"always"
],
"triple-equals": true
},
"defaultSeverity": "warning"
}
"rules": {
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"semicolon": [true, "always"],
"triple-equals": true
},
"defaultSeverity": "warning"
}

0 comments on commit 0eba8a1

Please sign in to comment.