This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 887
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge release/4.5.x into next (#2294)
- Loading branch information
Showing
454 changed files
with
10,078 additions
and
6,443 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,21 @@ | ||
### Bug Report | ||
|
||
- __TSLint version__: `<fill this out>` | ||
- __TypeScript version__: `<fill this out>` | ||
- __Running TSLint via__: (please choose one) CLI / Node.js API / grunt-tslint / Atom / Visual Studio / etc | ||
- __TSLint version__: | ||
- __TypeScript version__: | ||
- __Running TSLint via__: (pick one) CLI / Node.js API / VSCode / grunt-tslint / Atom / Visual Studio / etc | ||
|
||
#### TypeScript code being linted | ||
|
||
```ts | ||
(include if relevant) | ||
// code snippet | ||
``` | ||
|
||
with `tslint.json` configuration: | ||
|
||
```json | ||
(include if relevant) | ||
|
||
``` | ||
|
||
#### Actual behavior | ||
|
||
(fill this out) | ||
|
||
#### Expected behavior | ||
|
||
(fill this out) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,6 @@ typings/.basedir.ts | |
# vim swap files | ||
*.swo | ||
*.swp | ||
|
||
docs/_data/rules.json | ||
docs/rules/*/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
appveyor.yml | ||
circle.yml | ||
tslint.json | ||
yarn.lock | ||
/build/ | ||
/docs/ | ||
/scripts/ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
{ | ||
// Controls the rendering size of tabs in characters. If set to auto, the value will be guessed based on the opened file. | ||
"editor.tabSize": 4, | ||
// Controls the rendering size of tabs in characters. If set to auto, the value will be guessed based on the opened file. | ||
"editor.tabSize": 4, | ||
|
||
// Controls if the editor will insert spaces for tabs. If set to auto, the value will be guessed based on the opened file. | ||
"editor.insertSpaces": true, | ||
// Controls if the editor will insert spaces for tabs. If set to auto, the value will be guessed based on the opened file. | ||
"editor.insertSpaces": true, | ||
|
||
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping | ||
"editor.wrappingColumn": 140, | ||
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping | ||
"editor.wordWrap": "bounded", | ||
"editor.wordWrapColumn": 140, | ||
|
||
// The folders to exclude when doing a full text search in the workspace. | ||
"search.excludeFolders": [ | ||
".git", | ||
".tscache", | ||
"bower_components", | ||
"bin", | ||
"build", | ||
"lib", | ||
"node_modules" | ||
], | ||
// The folders to exclude when doing a full text search in the workspace. | ||
"files.exclude": { | ||
".git": true, | ||
".tscache": true, | ||
"bower_components": true, | ||
"bin": true, | ||
"build": true, | ||
"lib": true, | ||
"node_modules": true | ||
}, | ||
|
||
// Always use project's provided typescript compiler version | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
// Always use project's provided typescript compiler version | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.