From 09650b814adea239455536db99982b1bf76d2405 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 7 Jun 2014 13:27:45 -0700 Subject: [PATCH] Allow language_version to be overridden in config. --- pre_commit/clientlib/validate_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pre_commit/clientlib/validate_config.py b/pre_commit/clientlib/validate_config.py index 997c84fe..f18a7b73 100644 --- a/pre_commit/clientlib/validate_config.py +++ b/pre_commit/clientlib/validate_config.py @@ -26,6 +26,7 @@ CONFIG_JSON_SCHEMA = { 'id': {'type': 'string'}, 'files': {'type': 'string'}, 'exclude': {'type': 'string', 'default': '^$'}, + 'language_version': {'type': 'string'}, 'args': { 'type': 'array', 'default': [],