From 714e544b514618fd3289f17e82da81231f58a28f Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 11 Jan 2016 16:44:01 -0800 Subject: [PATCH] Remove coffeelint usage --- script/cibuild | 1 - script/coffeelint.json | 6 ------ script/coffeelint.py | 28 ---------------------------- 3 files changed, 35 deletions(-) delete mode 100644 script/coffeelint.json delete mode 100755 script/coffeelint.py diff --git a/script/cibuild b/script/cibuild index c0798dc7e2c3..1273945409e4 100755 --- a/script/cibuild +++ b/script/cibuild @@ -65,7 +65,6 @@ def main(): run_script('cpplint.py') if PLATFORM != 'win32': run_script('pylint.py') - run_script('coffeelint.py') if is_release: run_script('build.py', ['-c', 'R']) run_script('create-dist.py') diff --git a/script/coffeelint.json b/script/coffeelint.json deleted file mode 100644 index cc06d0d3c8ed..000000000000 --- a/script/coffeelint.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "max_line_length": { - "value": 80, - "level": "ignore" - } -} diff --git a/script/coffeelint.py b/script/coffeelint.py deleted file mode 100755 index 29f60f93d6fa..000000000000 --- a/script/coffeelint.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python - -import glob -import os -import sys - -from lib.util import execute - - -SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) - - -def main(): - os.chdir(SOURCE_ROOT) - - coffeelint = os.path.join(SOURCE_ROOT, 'node_modules', '.bin', 'coffeelint') - if sys.platform in ['win32', 'cygwin']: - coffeelint += '.cmd' - settings = ['--quiet', '-f', os.path.join('script', 'coffeelint.json')] - files = glob.glob('atom/browser/api/lib/*.coffee') + \ - glob.glob('atom/renderer/api/lib/*.coffee') + \ - glob.glob('atom/common/api/lib/*.coffee') + \ - glob.glob('atom/browser/atom/*.coffee') - - execute([coffeelint] + settings + files) - -if __name__ == '__main__': - sys.exit(main())