Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update ESLint task globbing and autofix #655

Merged
merged 1 commit into from
May 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
**/*.min.js
common/
examples/landmarks/js/visua11y.js
examples/landmarks/js/SkipTo.min.js
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Knocked these out since they're already covered by the glob on the first line

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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 ]
};