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 pull request #1743 from palantir/ad/master-into-next
Merge master into next
- Loading branch information
Showing
263 changed files
with
2,914 additions
and
1,258 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
/build/ | ||
/docs/site/ | ||
/scripts/*.js | ||
/scripts/*.js.map | ||
/lib/ | ||
/test/executable/tslint.json | ||
node_modules/ | ||
|
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 |
---|---|---|
|
@@ -11,10 +11,10 @@ | |
.vscode | ||
appveyor.yml | ||
circle.yml | ||
Gruntfile.js | ||
tslint.json | ||
/build/ | ||
/docs/ | ||
/scripts/ | ||
/src/ | ||
/test/ | ||
tscommand*.txt |
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 |
---|---|---|
@@ -0,0 +1,89 @@ | ||
{ | ||
"version": "0.1.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug CLI", | ||
"type": "node", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/build/src/tslint-cli.js", | ||
"stopOnEntry": false, | ||
"args": [], | ||
"cwd": "${workspaceRoot}", | ||
"preLaunchTask": "tsc", | ||
"runtimeExecutable": null, | ||
"runtimeArgs": [ | ||
"--nolazy" | ||
], | ||
"env": { | ||
"NODE_ENV": "development" | ||
}, | ||
"console": "internalConsole", | ||
"sourceMaps": true, | ||
"outFiles": [], | ||
"outDir": "${workspaceRoot}/build" | ||
}, | ||
{ | ||
"name": "Debug Mocha Tests", | ||
"type": "node", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", | ||
"stopOnEntry": false, | ||
"args": ["--reporter", "spec", "--colors", "--no-timeouts", "build/test/**/*Tests.js", "build/test/assert.js"], | ||
"cwd": "${workspaceRoot}", | ||
"preLaunchTask": "tsc", | ||
"runtimeExecutable": null, | ||
"runtimeArgs": [ | ||
"--nolazy" | ||
], | ||
"env": { | ||
"NODE_ENV": "development" | ||
}, | ||
"console": "internalConsole", | ||
"sourceMaps": true, | ||
"outFiles": [], | ||
"outDir": "${workspaceRoot}/build" | ||
}, | ||
{ | ||
"name": "Debug Rule Tests", | ||
"type": "node", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/test/ruleTestRunner.ts", | ||
"stopOnEntry": false, | ||
"args": ["run", "test"], | ||
"cwd": "${workspaceRoot}", | ||
"preLaunchTask": "tsc", | ||
"runtimeExecutable": null, | ||
"runtimeArgs": [ | ||
"--nolazy" | ||
], | ||
"env": { | ||
"NODE_ENV": "development" | ||
}, | ||
"console": "internalConsole", | ||
"sourceMaps": true, | ||
"outFiles": [], | ||
"outDir": "${workspaceRoot}/build" | ||
}, | ||
{ | ||
"name": "Debug Document Generation", | ||
"type": "node", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/scripts/buildDocs.ts", | ||
"stopOnEntry": false, | ||
"args": ["run", "test"], | ||
"cwd": "${workspaceRoot}", | ||
"preLaunchTask": "tsc", | ||
"runtimeExecutable": null, | ||
"runtimeArgs": [ | ||
"--nolazy" | ||
], | ||
"env": { | ||
"NODE_ENV": "development" | ||
}, | ||
"console": "internalConsole", | ||
"sourceMaps": true, | ||
"outFiles": [], | ||
"outDir": "${workspaceRoot}/build" | ||
} | ||
] | ||
} |
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,19 +1,11 @@ | ||
// Available variables which can be used inside of strings. | ||
// ${workspaceRoot}: the root folder of the team | ||
// ${file}: the current opened file | ||
// ${fileBasename}: the current opened file's basename | ||
// ${fileDirname}: the current opened file's dirname | ||
// ${fileExtname}: the current opened file's extension | ||
// ${cwd}: the current working directory of the spawned process | ||
|
||
// A task runner that calls scripts/tsc-wrapper.js. The wrapper script traverses | ||
// up the file system until a valid `tsconfig.json` is found, and runs `tsc` from | ||
// node_modules with that path as the root | ||
{ | ||
"version": "0.1.0", | ||
"command": "${workspaceRoot}/scripts/tsc-wrapper.js", | ||
"isShellCommand": true, | ||
"showOutput": "silent", | ||
"args": ["${workspaceRoot}", "${fileDirname}"], | ||
"problemMatcher": "$tsc" | ||
} | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "0.1.0", | ||
"command": "tsc", | ||
"isShellCommand": true, | ||
"args": ["-w", "-p", "test"], | ||
"showOutput": "silent", | ||
"isWatching": true, | ||
"problemMatcher": "$tsc-watch" | ||
} |
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
Oops, something went wrong.