Skip to content

Commit 9e7a5d9

Browse files
authored
Replace all usages of var with let / const - eslint auto applied (#3444)
1 parent 7a00938 commit 9e7a5d9

File tree

145 files changed

+1214
-1215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+1214
-1215
lines changed

.eslintrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
"@typescript-eslint/no-unused-vars": ["error", {
1717
"args": "none"
1818
}],
19-
"no-unused-vars": "off"
19+
"no-unused-vars": "off",
20+
"no-var": "error",
21+
"prefer-const": "error"
2022
},
2123
"overrides": [
2224
{

0 commit comments

Comments
 (0)