Merge pull request #4168 from atom/cpplint-utility-folder

Run cpplint on utility folder
This commit is contained in:
Kevin Sawicki 2016-01-20 10:00:50 -07:00
commit cac8466fb1
2 changed files with 2 additions and 2 deletions

View file

@ -55,4 +55,4 @@ class AtomContentUtilityClient : public content::ContentUtilityClient {
} // namespace atom
#endif // ATOM_UTILITY_ATOM_CONTENT_UTILITY_CLIENT_H_
#endif // ATOM_UTILITY_ATOM_CONTENT_UTILITY_CLIENT_H_

2
script/cpplint.py vendored
View file

@ -29,7 +29,7 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
def main():
os.chdir(SOURCE_ROOT)
files = list_files(['app', 'browser', 'common', 'renderer'],
files = list_files(['app', 'browser', 'common', 'renderer', 'utility'],
['*.cc', '*.h'])
call_cpplint(list(set(files) - set(IGNORE_FILES)))