├── .eslintrc ├── .gitignore ├── LICENSE.md ├── README.md ├── keymaps └── css-clean.json ├── main.js ├── menus └── css-clean.json ├── package.json ├── screenshot-01.png ├── screenshot.psd ├── spec ├── css-clean-spec.js └── css-clean-view-spec.js └── styles └── css-clean.less /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/css-clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/keymaps/css-clean.json -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/main.js -------------------------------------------------------------------------------- /menus/css-clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/menus/css-clean.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/package.json -------------------------------------------------------------------------------- /screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/screenshot-01.png -------------------------------------------------------------------------------- /screenshot.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/screenshot.psd -------------------------------------------------------------------------------- /spec/css-clean-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/spec/css-clean-spec.js -------------------------------------------------------------------------------- /spec/css-clean-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/spec/css-clean-view-spec.js -------------------------------------------------------------------------------- /styles/css-clean.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanJM/atom-css-clean/HEAD/styles/css-clean.less --------------------------------------------------------------------------------