Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #107 from AtomLinter/arcanemagus/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
Arcanemagus authored Sep 16, 2019
2 parents b37ad7e + 2bba4d7 commit feaac15
Show file tree
Hide file tree
Showing 3 changed files with 2,443 additions and 6,450 deletions.
4 changes: 2 additions & 2 deletions lib/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ module.exports = {
},

deactivate() {
this.idleCallbacks.forEach(callbackID => window.cancelIdleCallback(callbackID));
this.idleCallbacks.forEach((callbackID) => window.cancelIdleCallback(callbackID));
this.idleCallbacks.clear();
this.subscriptions.dispose();
},
Expand Down Expand Up @@ -172,7 +172,7 @@ module.exports = {
linter.configure(rules);

const results = linter.checkString(fileText, filePath);
return results.map(res => ({
return results.map((res) => ({
severity: 'error',
location: {
file: res.filename,
Expand Down
Loading

0 comments on commit feaac15

Please sign in to comment.