mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 00:17:37 +01:00
SERVER-25814 Do not lint the js files in the tools import
This commit is contained in:
parent
c0a54c7475
commit
e9ad3d5d40
1
.eslintignore
Normal file
1
.eslintignore
Normal file
@ -0,0 +1 @@
|
||||
src/mongo/gotools/*
|
@ -500,7 +500,8 @@ class Repo(object):
|
||||
file_list = [line.rstrip()
|
||||
for line in gito.splitlines()
|
||||
if (line.startswith("jstests") or line.startswith("src"))
|
||||
and not line.startswith("src/third_party")]
|
||||
and not line.startswith("src/third_party/")
|
||||
and not line.startswith("src/mongo/gotools/")]
|
||||
|
||||
files_match = re.compile('\\.(h|cpp|js)$')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user