Skip to content

Commit

Permalink
chore: Update ESLint task globbing
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Apr 23, 2018
1 parent d957be2 commit 3ddc8b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .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
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions respec-config.js
Expand Up @@ -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',
Expand Down Expand Up @@ -150,5 +150,5 @@ var respecConfig = {

localBiblio: biblio,

preProcess: [linkCrossReferences]
preProcess: [ linkCrossReferences ]
};

0 comments on commit 3ddc8b7

Please sign in to comment.