├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── a │ └── hello.txt ├── b │ └── a │ │ └── test.txt ├── c │ └── .gitignore ├── d │ ├── file1 │ ├── file2 │ ├── sub-dir │ │ └── file5 │ └── sub-files │ │ ├── file3 │ │ └── file4 ├── e │ ├── directory │ │ └── .ignore │ ├── file │ └── symlink └── invalid.tar └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/code-scanning-javascript-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/code-scanning-javascript-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/code-scanning-javascript-demo/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/code-scanning-javascript-demo/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/code-scanning-javascript-demo/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/a/hello.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/fixtures/b/a/test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /test/fixtures/c/.gitignore: -------------------------------------------------------------------------------- 1 | link 2 | -------------------------------------------------------------------------------- /test/fixtures/d/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/d/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/d/sub-dir/file5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/d/sub-files/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/d/sub-files/file4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/e/directory/.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/e/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/e/symlink: -------------------------------------------------------------------------------- 1 | symlink -------------------------------------------------------------------------------- /test/fixtures/invalid.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/code-scanning-javascript-demo/HEAD/test/fixtures/invalid.tar -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/code-scanning-javascript-demo/HEAD/test/index.js --------------------------------------------------------------------------------