├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── README.md ├── TrailingWhitespace.sln ├── appveyor.yml ├── artifacts ├── CSharp.png ├── OptionsDialog.png └── VisualStudioSettings.png └── src ├── Classifier ├── ClassificationTypes.cs ├── Classifier.cs └── ClassifierProvider.cs ├── Commands ├── RemoveWhitespaceCommand.cs ├── RemoveWhitespaceOnSave.cs ├── TextviewCreationListener.cs └── WhitespaceBase.cs ├── Helpers └── FileHelpers.cs ├── Options.cs ├── Properties └── AssemblyInfo.cs ├── Resources ├── License.txt ├── logo.png └── preview.png ├── TrailingWhitespace.csproj ├── VSCommandTable.cs ├── VSCommandTable.vsct ├── VSPackage.cs ├── source.extension.cs └── source.extension.vsixmanifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/README.md -------------------------------------------------------------------------------- /TrailingWhitespace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/TrailingWhitespace.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/appveyor.yml -------------------------------------------------------------------------------- /artifacts/CSharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/artifacts/CSharp.png -------------------------------------------------------------------------------- /artifacts/OptionsDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/artifacts/OptionsDialog.png -------------------------------------------------------------------------------- /artifacts/VisualStudioSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/artifacts/VisualStudioSettings.png -------------------------------------------------------------------------------- /src/Classifier/ClassificationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Classifier/ClassificationTypes.cs -------------------------------------------------------------------------------- /src/Classifier/Classifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Classifier/Classifier.cs -------------------------------------------------------------------------------- /src/Classifier/ClassifierProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Classifier/ClassifierProvider.cs -------------------------------------------------------------------------------- /src/Commands/RemoveWhitespaceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Commands/RemoveWhitespaceCommand.cs -------------------------------------------------------------------------------- /src/Commands/RemoveWhitespaceOnSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Commands/RemoveWhitespaceOnSave.cs -------------------------------------------------------------------------------- /src/Commands/TextviewCreationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Commands/TextviewCreationListener.cs -------------------------------------------------------------------------------- /src/Commands/WhitespaceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Commands/WhitespaceBase.cs -------------------------------------------------------------------------------- /src/Helpers/FileHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Helpers/FileHelpers.cs -------------------------------------------------------------------------------- /src/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Options.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Resources/License.txt -------------------------------------------------------------------------------- /src/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Resources/logo.png -------------------------------------------------------------------------------- /src/Resources/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/Resources/preview.png -------------------------------------------------------------------------------- /src/TrailingWhitespace.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/TrailingWhitespace.csproj -------------------------------------------------------------------------------- /src/VSCommandTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/VSCommandTable.cs -------------------------------------------------------------------------------- /src/VSCommandTable.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/VSCommandTable.vsct -------------------------------------------------------------------------------- /src/VSPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/VSPackage.cs -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/TrailingWhitespace/HEAD/src/source.extension.vsixmanifest --------------------------------------------------------------------------------