Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-signal authored Feb 19, 2020
1 parent 1881fa5 commit 32c0a8f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Then you need `git`, if you don't have that yet: https://git-scm.com/
1. Install the [Xcode Command-Line Tools](http://osxdaily.com/2014/02/12/install-command-line-tools-mac-os-x/).
2. Ensure [git-lfs](https://github.com/git-lfs/git-lfs/wiki/Installation) is installed. You'll need it to to checkout and install the node requirements. Install with `brew install git-lfs`


### Windows

1. **Windows 7 only:**
Expand Down
6 changes: 3 additions & 3 deletions js/spell_check.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ const electron = require('electron');

const Typo = require('typo-js');
const fs = require('fs');
const os = require('os');
const osLocale = require('os-locale');
const path = require('path');
const semver = require('semver');

const { remote, webFrame } = electron;

Expand Down Expand Up @@ -59,7 +57,9 @@ function setupLinux(locale) {
return new Typo(locale, affData, dicData);
}

window.log.error(`Could not find one of ${affDataPath} or ${dicDataPath} on filesystem`);
window.log.error(
`Could not find one of ${affDataPath} or ${dicDataPath} on filesystem`
);
}

window.log.info('Detected Linux. Using default en_US spell check dictionary');
Expand Down
2 changes: 1 addition & 1 deletion ts/util/lint/exceptions.json
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
"rule": "jQuery-load(",
"path": "js/modules/stickers.js",
"line": "async function load() {",
"lineNumber": 66,
"lineNumber": 74,
"reasonCategory": "falseMatch",
"updated": "2019-04-26T17:48:30.675Z"
},
Expand Down

0 comments on commit 32c0a8f

Please sign in to comment.