Lint: make esid check allow "%" (#1638)

This commit is contained in:
Rick Waldron 2018-07-13 16:39:32 -04:00 committed by Leo Balter
parent ccaa9571ea
commit ae925f6791
2 changed files with 5 additions and 4 deletions

View File

@ -8,11 +8,12 @@ class CheckEsid(Check):
def __init__(self):
#self.es5idRegex = re.compile(r"^S?(B|\d+)(\.\d+)+(-(\d+|[a-z]|i+))*(_A\d(\.\d+)?(_T\d(\.\d+)?)?)?$")
self.es6idRegex = re.compile(r"^(S?(B|\d+)(\.\d+)+(((_A\d\.\d)?_T?\d)|[ _]S\d+(\.[a-z])*)?(, |$))+")
# Simpliiied version of the WhatWG URL specification for fragment
# parsing
# Simplified version of the WhatWG URL specification for fragment
# parsing:
# https://url.spec.whatwg.org/#fragment-state
# However, that must also include "%"
self.esidRegex = re.compile(
u"^[a-z0-9!$&'()*+,\-./:;=?@_~\u00a0-\U0010fffd]+$", re.IGNORECASE
u"^[a-z0-9!$%&'()*+,\-./:;=?@_~\u00a0-\U0010fffd]+$", re.IGNORECASE
)
def run(self, name, meta, source):

View File

@ -2,7 +2,7 @@
// Copyright (C) 2017 Mike Pennisi. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: use-strict-directive!@$&*()_+
esid: use-strict-directive!@$%&*()_+
description: Minimal test
---*/