├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── Notes.md ├── README.md ├── TSLint_icon.png ├── package.json ├── test └── manual-tests │ ├── array-type.ts │ ├── arrow-parens.ts │ ├── comment-format.ts │ ├── no-var-keyword.ts │ ├── ordered-imports.ts │ ├── quotemark.ts │ ├── semicolon.ts │ ├── test-javascript.js │ ├── triple-equals.ts │ ├── tsconfig.json │ ├── tslint.json │ └── whitespace.ts └── thirdpartynotices.txt /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/Notes.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/README.md -------------------------------------------------------------------------------- /TSLint_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/TSLint_icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/package.json -------------------------------------------------------------------------------- /test/manual-tests/array-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/test/manual-tests/array-type.ts -------------------------------------------------------------------------------- /test/manual-tests/arrow-parens.ts: -------------------------------------------------------------------------------- 1 | [1, 2 ].map( num => console.log(num) ); 2 | -------------------------------------------------------------------------------- /test/manual-tests/comment-format.ts: -------------------------------------------------------------------------------- 1 | // VS Code provided fix 2 | 3 | //start with space -------------------------------------------------------------------------------- /test/manual-tests/no-var-keyword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/test/manual-tests/no-var-keyword.ts -------------------------------------------------------------------------------- /test/manual-tests/ordered-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/test/manual-tests/ordered-imports.ts -------------------------------------------------------------------------------- /test/manual-tests/quotemark.ts: -------------------------------------------------------------------------------- 1 | // VS Code provided fix 2 | let s = 'quotemark'; 3 | 4 | console.log(s); -------------------------------------------------------------------------------- /test/manual-tests/semicolon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/test/manual-tests/semicolon.ts -------------------------------------------------------------------------------- /test/manual-tests/test-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/test/manual-tests/test-javascript.js -------------------------------------------------------------------------------- /test/manual-tests/triple-equals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/test/manual-tests/triple-equals.ts -------------------------------------------------------------------------------- /test/manual-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/test/manual-tests/tsconfig.json -------------------------------------------------------------------------------- /test/manual-tests/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/test/manual-tests/tslint.json -------------------------------------------------------------------------------- /test/manual-tests/whitespace.ts: -------------------------------------------------------------------------------- 1 | // VS Code provided fix 2 | let x =3; 3 | 4 | console.log(x); -------------------------------------------------------------------------------- /thirdpartynotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-ts-tslint/HEAD/thirdpartynotices.txt --------------------------------------------------------------------------------