-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[spell-check] Fixes for a possible patch release (#1173)
* [spell-check] Change test so it works identically across platforms * [spell-check] Remove errant `console.log`… …and clean up specs. * [spell-check] Revert addition to `spell-check.grammars`… …of the `"source comment"` value. A user can add it back in if they want spell-checking of code comments, but it's probably a bit too opinionated to be the default.
- Loading branch information
1 parent
e46ba9a
commit 316dfd1
Showing
4 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
module.exports = { | ||
env: { jasmine: true }, | ||
rules: { | ||
"node/no-unpublished-require": "off", | ||
"node/no-extraneous-require": "off", | ||
"no-unused-vars": "off", | ||
"no-empty": "off" | ||
} | ||
env: { jasmine: true }, | ||
globals: { | ||
advanceClock: true, | ||
}, | ||
rules: { | ||
'node/no-unpublished-require': 'off', | ||
'node/no-extraneous-require': 'off', | ||
'no-unused-vars': 'off', | ||
'no-empty': 'off', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters