Merge pull request #1 from ha100/feature/swift-language-support

Add Swift file extension to default extensions list
This commit is contained in:
Alexander Kradenkov 2018-07-05 07:39:01 +03:00 committed by GitHub
commit da57d643df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
from __future__ import unicode_literals
DEFAULT_EXTENSIONS = ["java", "c", "cc", "cpp", "h", "hh", "hpp", "py", "glsl", "rb", "js", "sql"]
DEFAULT_EXTENSIONS = ["java", "c", "cc", "cpp", "h", "hh", "hpp", "py", "glsl", "rb", "js", "sql", "swift"]
__extensions__ = DEFAULT_EXTENSIONS
__located_extensions__ = set()