Top "Code-cleanup" questions

Code cleanup refers to the act of writing code so that it cleans up leftover data structures and other unwanted materials from memory and the filesystem.

Order of items in classes: Fields, Properties, Constructors, Methods

Is there an official C# guideline for the order of items in terms of class structure? Does it go: Public …

c# .net coding-style code-cleanup code-structure
How to identify unused CSS definitions from multiple CSS files in a project

A bunch of CSS files were pulled in and now I'm trying to clean things up a bit. How can …

css performance optimization code-cleanup
Sublime Text 2: Trim trailing white space on demand

I know that Sublime Text 2 can delete the trailing white space on files upon saving. When working in a team …

whitespace sublimetext2 code-cleanup
How to project clean in Android Studio?

I am new in Android Studio so I face some problem with it. I am looking for a way how …

android-studio code-cleanup
Clean react native project

How to clean react native project? Is there any way to clean react native project as we can clean xcode …

react-native code-cleanup
How to call a function by its name (std::string) in C++?

I wonder if there is a simple way to call a function from a string. I know a simple way, …

c++ string function invoke code-cleanup
How to remove extra empty lines from XML file?

In short; i have many empty lines generated in an XML file, and i am looking for a way to …

java xml carriage-return code-cleanup
Removing unused code in Visual Studio

In relation to this question: "Remove unused references (!= "using")", I would like to know if there is a tool for …

c# .net visual-studio-2010 visual-studio code-cleanup
Ignore camelcase variable in JSHint

Having a bit of an issue with JShint and the following line of code. $location.path('map-' + map.id + '/…

javascript coding-style jshint code-cleanup
Is there a script to list git branches created by me?

I'm aware that branches don't really store creator information - and they're just a pointer to a commit. My goal …

git branch code-cleanup