├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── package.json ├── src └── main.ts ├── test ├── fixtures │ ├── other-fixture-Brogrammer.tmTheme │ ├── other-fixture-CMake.tmLanguage │ ├── other-fixture-Flatland_Monokai.tmTheme │ ├── other-fixture-Hackers Haze.tmTheme │ ├── other-fixture-MagicPython.tmLanguage │ ├── other-fixture-MagicRegExp.tmLanguage │ ├── other-fixture-MarkdownEditor-Dark.tmTheme │ ├── other-fixture-MarkdownEditor-Focus.tmTheme │ ├── other-fixture-MarkdownEditor-Yellow.tmTheme │ ├── other-fixture-MarkdownEditor.tmTheme │ ├── other-fixture-Material-Theme.tmTheme │ ├── other-fixture-Material-Theme1-Darker.tmTheme │ ├── other-fixture-Material-Theme1-Lighter.tmTheme │ ├── other-fixture-Material-Theme1.tmTheme │ ├── other-fixture-One%20Dark.tmTheme │ ├── other-fixture-Tomorrow.tmTheme │ ├── other-fixture-Tomorrow_Night.tmTheme │ ├── other-fixture-Tomorrow_Night_Bright.tmTheme │ ├── other-fixture-Tomorrow_Night_Eighties.tmTheme │ ├── other-fixture-jsx.tmLanguage │ ├── other-fixture-ruby.tmLanguage │ ├── other-fixture-xquery.tmLanguage │ ├── suite1-fixture-Jade.tmLanguage │ ├── suite1-fixture-Makefile.plist │ ├── suite1-fixture-Perl.plist │ ├── suite1-fixture-Ruby.plist │ ├── suite1-fixture-aspvbnet.plist │ ├── suite1-fixture-markdown.plist │ ├── suite1-fixture-php.plist │ ├── suite1-fixture-testlang12.plist │ ├── vscode-fixture-ASPVBnet.plist │ ├── vscode-fixture-Abyss.tmTheme │ ├── vscode-fixture-Batch File.tmLanguage │ ├── vscode-fixture-Clojure.tmLanguage │ ├── vscode-fixture-CoffeeScript.tmLanguage │ ├── vscode-fixture-Dockerfile.tmLanguage │ ├── vscode-fixture-Groovy.tmLanguage │ ├── vscode-fixture-HTML.plist │ ├── vscode-fixture-Ini.plist │ ├── vscode-fixture-JSON.tmLanguage │ ├── vscode-fixture-Jade.tmLanguage │ ├── vscode-fixture-Java.plist │ ├── vscode-fixture-JavaScript.tmLanguage │ ├── vscode-fixture-Kimbie_dark.tmTheme │ ├── vscode-fixture-LESS.tmLanguage │ ├── vscode-fixture-Lua.plist │ ├── vscode-fixture-Makefile.plist │ ├── vscode-fixture-Monokai.tmTheme │ ├── vscode-fixture-Objective-C.tmLanguage │ ├── vscode-fixture-Perl 6.tmLanguage │ ├── vscode-fixture-Perl.plist │ ├── vscode-fixture-Platform.tmLanguage │ ├── vscode-fixture-PowershellSyntax.tmLanguage │ ├── vscode-fixture-Python.tmLanguage │ ├── vscode-fixture-QuietLight.tmTheme │ ├── vscode-fixture-R.plist │ ├── vscode-fixture-Regular Expressions (JavaScript).tmLanguage │ ├── vscode-fixture-Regular Expressions (Python).tmLanguage │ ├── vscode-fixture-Ruby.plist │ ├── vscode-fixture-SQL.plist │ ├── vscode-fixture-Shell-Unix-Bash.tmLanguage │ ├── vscode-fixture-Solarized-dark.tmTheme │ ├── vscode-fixture-Solarized-light.tmTheme │ ├── vscode-fixture-Tomorrow-Night-Blue.tmTheme │ ├── vscode-fixture-TypeScript.tmLanguage │ ├── vscode-fixture-TypeScriptReact.tmLanguage │ ├── vscode-fixture-XML.plist │ ├── vscode-fixture-XSL.plist │ ├── vscode-fixture-YAML.plist │ ├── vscode-fixture-css.plist │ ├── vscode-fixture-diff.tmLanguage │ ├── vscode-fixture-dimmed-monokai.tmTheme │ ├── vscode-fixture-git-commit.tmLanguage │ ├── vscode-fixture-git-rebase.tmLanguage │ ├── vscode-fixture-markdown.tmLanguage │ └── vscode-fixture-red.tmTheme └── test.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/src/main.ts -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Brogrammer.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Brogrammer.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-CMake.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-CMake.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Flatland_Monokai.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Flatland_Monokai.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Hackers Haze.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Hackers Haze.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-MagicPython.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-MagicPython.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/other-fixture-MagicRegExp.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-MagicRegExp.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/other-fixture-MarkdownEditor-Dark.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-MarkdownEditor-Dark.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-MarkdownEditor-Focus.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-MarkdownEditor-Focus.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-MarkdownEditor-Yellow.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-MarkdownEditor-Yellow.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-MarkdownEditor.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-MarkdownEditor.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Material-Theme.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Material-Theme.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Material-Theme1-Darker.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Material-Theme1-Darker.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Material-Theme1-Lighter.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Material-Theme1-Lighter.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Material-Theme1.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Material-Theme1.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-One%20Dark.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-One%20Dark.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Tomorrow.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Tomorrow.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Tomorrow_Night.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Tomorrow_Night.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Tomorrow_Night_Bright.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Tomorrow_Night_Bright.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-Tomorrow_Night_Eighties.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-Tomorrow_Night_Eighties.tmTheme -------------------------------------------------------------------------------- /test/fixtures/other-fixture-jsx.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-jsx.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/other-fixture-ruby.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-ruby.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/other-fixture-xquery.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/other-fixture-xquery.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/suite1-fixture-Jade.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/suite1-fixture-Jade.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/suite1-fixture-Makefile.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/suite1-fixture-Makefile.plist -------------------------------------------------------------------------------- /test/fixtures/suite1-fixture-Perl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/suite1-fixture-Perl.plist -------------------------------------------------------------------------------- /test/fixtures/suite1-fixture-Ruby.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/suite1-fixture-Ruby.plist -------------------------------------------------------------------------------- /test/fixtures/suite1-fixture-aspvbnet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/suite1-fixture-aspvbnet.plist -------------------------------------------------------------------------------- /test/fixtures/suite1-fixture-markdown.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/suite1-fixture-markdown.plist -------------------------------------------------------------------------------- /test/fixtures/suite1-fixture-php.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/suite1-fixture-php.plist -------------------------------------------------------------------------------- /test/fixtures/suite1-fixture-testlang12.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/suite1-fixture-testlang12.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-ASPVBnet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-ASPVBnet.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Abyss.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Abyss.tmTheme -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Batch File.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Batch File.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Clojure.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Clojure.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-CoffeeScript.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-CoffeeScript.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Dockerfile.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Dockerfile.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Groovy.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Groovy.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-HTML.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-HTML.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Ini.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Ini.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-JSON.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-JSON.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Jade.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Jade.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Java.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Java.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-JavaScript.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-JavaScript.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Kimbie_dark.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Kimbie_dark.tmTheme -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-LESS.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-LESS.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Lua.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Lua.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Makefile.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Makefile.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Monokai.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Monokai.tmTheme -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Objective-C.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Objective-C.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Perl 6.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Perl 6.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Perl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Perl.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Platform.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Platform.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-PowershellSyntax.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-PowershellSyntax.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Python.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Python.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-QuietLight.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-QuietLight.tmTheme -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-R.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-R.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Regular Expressions (JavaScript).tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Regular Expressions (JavaScript).tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Regular Expressions (Python).tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Regular Expressions (Python).tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Ruby.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Ruby.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-SQL.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-SQL.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Shell-Unix-Bash.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Shell-Unix-Bash.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Solarized-dark.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Solarized-dark.tmTheme -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Solarized-light.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Solarized-light.tmTheme -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-Tomorrow-Night-Blue.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-Tomorrow-Night-Blue.tmTheme -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-TypeScript.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-TypeScript.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-TypeScriptReact.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-TypeScriptReact.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-XML.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-XML.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-XSL.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-XSL.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-YAML.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-YAML.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-css.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-css.plist -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-diff.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-diff.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-dimmed-monokai.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-dimmed-monokai.tmTheme -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-git-commit.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-git-commit.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-git-rebase.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-git-rebase.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-markdown.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-markdown.tmLanguage -------------------------------------------------------------------------------- /test/fixtures/vscode-fixture-red.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/fixtures/vscode-fixture-red.tmTheme -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/test/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-fast-plist/HEAD/tsconfig.json --------------------------------------------------------------------------------