Matt Bierner
b4964bcf35
Replace some common index based for loops with for-of loops
...
Replaces many loops of the form:
```js
for (let i = 0; i < elements.length; ++i) {
const i = elements[i];
...
}
```
with:
```js
for (const element of elements) {
...
}
```
Mix of a horrible regex based find/replace and manual touch ups
2019-01-03 19:11:18 -08:00
Dirk Baeumer
d426ebf764
Add linter rule to check for valid localize keys
2018-10-23 21:43:12 +02:00
Matt Bierner
4b2aed7bb2
let -> const
2018-10-04 19:01:34 -07:00
Matt Bierner
5862b41657
Fixing strict null rules in tslint
2018-10-03 10:47:32 -07:00
Dirk Baeumer
5c927cf6ae
Add check for empty key
2017-12-06 15:16:11 +01:00
Joao Moreno
322bd6136a
fix no-unexternalized-strings rule
2017-11-13 11:13:07 +01:00
Max Furman
a0031de9d0
Compare with Clipboard ( #37841 )
...
* Compare the current buffer with clipboard
* Found a typo in linter error message
* Instantiate content provider on run
2017-11-10 07:54:29 +01:00
Erich Gamma
56111c9cc6
update to tslint5
2017-11-07 12:08:22 +01:00
Johannes Rieken
b2aebcdbc5
lint - single-quoted-imports only
2017-08-21 16:50:24 +02:00
Beatriz Magalhães
3c52b5ae39
fixed misspelled occurrences and occurred
2017-06-12 23:05:57 +01:00
Benjamin Pasero
61efd8fb23
build build/lib folder with latest
2017-03-06 16:32:23 +01:00
Erich Gamma
3625052492
update to tslint 4.0
2017-01-11 09:00:57 +01:00
Erich Gamma
b381829341
Add fix to non-externalized string warning
2016-12-01 10:08:11 +01:00
Joao Moreno
d63380a375
move unexternalized strings rule
2016-03-07 12:56:32 +01:00