From 3ddc8b7edf37ccf80a2e57ae57316dd4ff9351db Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Mon, 23 Apr 2018 09:43:18 -0400 Subject: [PATCH] chore: Update ESLint task globbing --- .eslintignore | 5 +---- package.json | 4 ++-- respec-config.js | 4 ++-- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.eslintignore b/.eslintignore index 87ba626651..f0efad6a7f 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,7 +1,4 @@ **/*.min.js +common/ examples/landmarks/js/visua11y.js -examples/landmarks/js/SkipTo.min.js -examples/landmarks/js/bootstrap-accessibility.min.js -examples/landmarks/js/bootstrap.min.js -examples/landmarks/js/jquery-2.1.1.min.js examples/js/highlight.pack.js diff --git a/package.json b/package.json index 2b36030f80..033ef9e27f 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "example": "examples" }, "scripts": { - "fix": "eslint --fix bin examples", - "lint": "eslint bin examples", + "fix": "eslint --fix .", + "lint": "eslint .", "test": "npm run lint" }, "repository": { diff --git a/respec-config.js b/respec-config.js index 8248305b87..302b098d74 100644 --- a/respec-config.js +++ b/respec-config.js @@ -11,7 +11,7 @@ var respecConfig = { // publishDate: "2013-08-22", noRecTrack: true, diffTool: 'http://www.aptest.com/standards/htmldiff/htmldiff.pl', - license: "w3c-software-doc", + license: 'w3c-software-doc', // The specifications short name, as in http://www.w3.org/TR/short-name/ shortName: 'wai-aria-practices-1.1', @@ -150,5 +150,5 @@ var respecConfig = { localBiblio: biblio, - preProcess: [linkCrossReferences] + preProcess: [ linkCrossReferences ] };