Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 4874154

Browse files
committed
Lint
1 parent 4180f9b commit 4874154

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/locale-checker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class LocaleChecker {
2121
this.enabled = true;
2222
this.hasSystemChecker = hasSystemChecker;
2323
this.inferredLocale = inferredLocale;
24-
if (atom.config.get("spell-check.enableDebug")) {
24+
if (atom.config.get('spell-check.enableDebug')) {
2525
debug = require('debug');
2626
this.log = debug('spell-check:locale-checker').extend(locale);
2727
} else {

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let log = (str) => {};
99

1010
module.exports = {
1111
activate() {
12-
if (atom.config.get("spell-check.enableDebug")) {
12+
if (atom.config.get('spell-check.enableDebug')) {
1313
debug = require('debug');
1414
log = debug('spell-check');
1515
}

lib/spell-check-manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ class SpellCheckerManager {
423423

424424
init() {
425425
// Set up logging.
426-
if (atom.config.get("spell-check.enableDebug")) {
426+
if (atom.config.get('spell-check.enableDebug')) {
427427
debug = require('debug');
428428
this.log = debug('spell-check:spell-check-manager');
429429
} else {

lib/system-checker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (env.isSystemSupported()) {
2323
// due to some memory bug.
2424
class SystemChecker {
2525
constructor() {
26-
if (atom.config.get("spell-check.enableDebug")) {
26+
if (atom.config.get('spell-check.enableDebug')) {
2727
debug = require('debug');
2828
this.log = debug('spell-check:system-checker');
2929
} else {

0 commit comments

Comments
 (0)