├── .gitattributes ├── LICENSE.md ├── README.md ├── Unused Style Remover.sketchplugin └── Contents │ ├── Resources │ └── icon.png │ └── Sketch │ ├── manifest.json │ └── script.js ├── appcast.xml └── images ├── logo.png └── screenshot.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/README.md -------------------------------------------------------------------------------- /Unused Style Remover.sketchplugin/Contents/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/Unused Style Remover.sketchplugin/Contents/Resources/icon.png -------------------------------------------------------------------------------- /Unused Style Remover.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/Unused Style Remover.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Unused Style Remover.sketchplugin/Contents/Sketch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/Unused Style Remover.sketchplugin/Contents/Sketch/script.js -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/appcast.xml -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/unused-style-remover/HEAD/images/screenshot.png --------------------------------------------------------------------------------