Atom Editor Regexes Operate on all project files easily with global search/replace File search glob When running 'find and replace' in entire project app/webroot/js/!(build)/**/*.js Add space after object keys Search Replace (\s{3,})([a-zA-Z_-]+):([^\/\s]+) $1$2: $3 Leading comma to trailing Search Replace (\s+),(\s{1}) ,$1 Promote inline comments Search Replace ^((?!\s*[\/]+).*)([\/]{2,}.+) $2\n$1 Remove oneline comments Search Replace ^(\s+)(\/\/.+\n\s+)$^(\s+)(\/\/.+\n) Empty/Null/No content Remove oneline code comments Search Replace ^\s+\/\/.+[\$;\{\}\(\)] Empty/Null/No content