-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Infrastructure: Add eslint-html plugin
Infrastructure: Allows linting and autofixing of the script tags inside the HTML files (pull #2109)
- Loading branch information
Showing
25 changed files
with
331 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,27 +7,29 @@ | |
<script src="common/script/resolveReferences.js" class="remove"></script> | ||
<script src="common/biblio.js" class="remove"></script> | ||
<script class="remove"> | ||
/* eslint-disable */ | ||
|
||
var respecConfig = { | ||
// Embed RDFa data in the output. | ||
doRDFa : '1.1', | ||
includePermalinks : true, | ||
permalinkEdge : true, | ||
permalinkHide : false, | ||
doRDFa: '1.1', | ||
includePermalinks: true, | ||
permalinkEdge: true, | ||
permalinkHide: false, | ||
// Specification status (e.g., WD, LC, NOTE, etc.). If in doubt use ED. | ||
specStatus : "ED", | ||
specStatus: 'ED', | ||
// crEnd: "2012-04-30", | ||
// perEnd: "2013-07-23", | ||
// publishDate: "2013-08-22", | ||
noRecTrack : true, | ||
diffTool : "http://www.aptest.com/standards/htmldiff/htmldiff.pl", | ||
noRecTrack: true, | ||
diffTool: 'http://www.aptest.com/standards/htmldiff/htmldiff.pl', | ||
|
||
// The specifications short name, as in http://www.w3.org/TR/short-name/ | ||
shortName : "wai-aria-practices-1.1", | ||
shortName: 'wai-aria-practices-1.1', | ||
|
||
// If you wish the publication date to be other than today, | ||
// set publishDate. | ||
// publishDate: "2009-08-06", | ||
copyrightStart : "2015", | ||
copyrightStart: '2015', | ||
|
||
// If there is a previously published draft, uncomment this | ||
// and set its YYYY-MM-DD date and its maturity status. | ||
|
@@ -38,50 +40,58 @@ | |
// previousDiffURI: "", | ||
|
||
// If there a publicly available Editors Draft, this is the link | ||
edDraftURI : "http://w3c.github.io/aria-practices/", | ||
edDraftURI: 'http://w3c.github.io/aria-practices/', | ||
|
||
// If this is a LCWD, uncomment and set the end of its review period | ||
// lcEnd: "2012-02-21", | ||
|
||
// Editors, add as many as you like. | ||
// “name” is the only required field. | ||
editors : [ { | ||
name : "Matt King", | ||
mailto : "[email protected]", | ||
company : "Facebook", | ||
companyURI : "http://www.facebook.com/" | ||
}, { | ||
name : "James Nurthen", | ||
mailto : "[email protected]", | ||
company : "Oracle Corporation", | ||
companyURI : "http://www.oracle.com/" | ||
}, { | ||
name : "Michael Cooper", | ||
url : 'http://www.w3.org/People/cooper/', | ||
mailto : "[email protected]", | ||
company : "W3C", | ||
companyURI : "http://www.w3.org/" | ||
}, { | ||
name : "Michiel Bijl", | ||
mailto : "[email protected]", | ||
company : "The Paciello Group", | ||
companyURI : "https://www.paciellogroup.com/" | ||
}, { | ||
name : "Joseph Scheuhammer", | ||
company : "Inclusive Design Research Centre, OCAD University", | ||
companyURI : "http://idrc.ocad.ca/", | ||
note : "Previous Editor" | ||
}, { | ||
name : "Lisa Pappas", | ||
company : "SAS", | ||
companyURI : "http://www.sas.com/", | ||
note : "Previous Editor" | ||
}, { | ||
name : "Rich Schwerdtfeger", | ||
company : "IBM Corporation", | ||
companyURI : "http://ibm.com/", | ||
note : "Previous Editor" | ||
}, ], | ||
editors: [ | ||
{ | ||
name: 'Matt King', | ||
mailto: '[email protected]', | ||
company: 'Facebook', | ||
companyURI: 'http://www.facebook.com/', | ||
}, | ||
{ | ||
name: 'James Nurthen', | ||
mailto: '[email protected]', | ||
company: 'Oracle Corporation', | ||
companyURI: 'http://www.oracle.com/', | ||
}, | ||
{ | ||
name: 'Michael Cooper', | ||
url: 'http://www.w3.org/People/cooper/', | ||
mailto: '[email protected]', | ||
company: 'W3C', | ||
companyURI: 'http://www.w3.org/', | ||
}, | ||
{ | ||
name: 'Michiel Bijl', | ||
mailto: '[email protected]', | ||
company: 'The Paciello Group', | ||
companyURI: 'https://www.paciellogroup.com/', | ||
}, | ||
{ | ||
name: 'Joseph Scheuhammer', | ||
company: 'Inclusive Design Research Centre, OCAD University', | ||
companyURI: 'http://idrc.ocad.ca/', | ||
note: 'Previous Editor', | ||
}, | ||
{ | ||
name: 'Lisa Pappas', | ||
company: 'SAS', | ||
companyURI: 'http://www.sas.com/', | ||
note: 'Previous Editor', | ||
}, | ||
{ | ||
name: 'Rich Schwerdtfeger', | ||
company: 'IBM Corporation', | ||
companyURI: 'http://ibm.com/', | ||
note: 'Previous Editor', | ||
}, | ||
], | ||
|
||
// Authors, add as many as you like. | ||
// This is optional, uncomment if you have authors as well as editors. | ||
|
@@ -97,23 +107,23 @@ | |
// ], | ||
|
||
// Spec URLs | ||
ariaSpecURLs : { | ||
"ED" : "http://w3c.github.io/aria/aria/aria.html", | ||
"FPWD" : "http://www.w3.org/TR/wai-aria-1.1/", | ||
"WD" : "http://www.w3.org/TR/wai-aria-1.1/", | ||
"REC" : "http://www.w3.org/TR/wai-aria/" | ||
ariaSpecURLs: { | ||
ED: 'http://w3c.github.io/aria/aria/aria.html', | ||
FPWD: 'http://www.w3.org/TR/wai-aria-1.1/', | ||
WD: 'http://www.w3.org/TR/wai-aria-1.1/', | ||
REC: 'http://www.w3.org/TR/wai-aria/', | ||
}, | ||
accNameURLs : { | ||
"ED" : "http://w3c.github.io/aria/accname-aam/accname-aam.html", | ||
"WD" : "http://www.w3.org/TR/accname-aam-1.1/", | ||
"FPWD" : "http://www.w3.org/TR/accname-aam-1.1/", | ||
"REC" : "http://www.w3.org/TR/accname-aam-1.1/" | ||
accNameURLs: { | ||
ED: 'http://w3c.github.io/aria/accname-aam/accname-aam.html', | ||
WD: 'http://www.w3.org/TR/accname-aam-1.1/', | ||
FPWD: 'http://www.w3.org/TR/accname-aam-1.1/', | ||
REC: 'http://www.w3.org/TR/accname-aam-1.1/', | ||
}, | ||
coreMappingURLs : { | ||
"ED" : "http://w3c.github.io/aria/core-aam/core-aam.html", | ||
"WD" : "http://www.w3.org/TR/core-aam-1.1/", | ||
"FPWD" : "http://www.w3.org/TR/core-aam-1.1/", | ||
"REC" : "http://www.w3.org/TR/core-aam-1.1/" | ||
coreMappingURLs: { | ||
ED: 'http://w3c.github.io/aria/core-aam/core-aam.html', | ||
WD: 'http://www.w3.org/TR/core-aam-1.1/', | ||
FPWD: 'http://www.w3.org/TR/core-aam-1.1/', | ||
REC: 'http://www.w3.org/TR/core-aam-1.1/', | ||
}, | ||
|
||
// alternateFormats: [ | ||
|
@@ -134,26 +144,26 @@ | |
// errata: 'http://www.w3.org/2010/02/rdfa/errata.html', | ||
|
||
// name of the WG | ||
wg : "Accessible Rich Internet Applications Working Group", | ||
wg: 'Accessible Rich Internet Applications Working Group', | ||
|
||
// URI of the public WG page | ||
wgURI : "http://www.w3.org/WAI/ARIA/", | ||
wgURI: 'http://www.w3.org/WAI/ARIA/', | ||
|
||
// Name (without the @w3c.org) of the public mailing | ||
// to which comments are due. | ||
wgPublicList : "public-aria", | ||
wgPublicList: 'public-aria', | ||
|
||
// URI of the patent status for this WG, for Rec-track documents | ||
// !!!! IMPORTANT !!!! | ||
// This is important for Rec-track documents, do not copy a patent URI | ||
// from a random document unless you know what you're doing. | ||
// If in doubt ask your friendly neighbourhood Team Contact. | ||
wgPatentURI : "http://www.w3.org/2004/01/pp-impl/83726/status", | ||
maxTocLevel : 4, | ||
wgPatentURI: 'http://www.w3.org/2004/01/pp-impl/83726/status', | ||
maxTocLevel: 4, | ||
|
||
localBiblio : biblio, | ||
localBiblio: biblio, | ||
|
||
preProcess : [ linkCrossReferences ] | ||
preProcess: [linkCrossReferences], | ||
}; | ||
</script> | ||
<link href="common/css/common.css" rel="stylesheet" type="text/css" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.