This repository was archived by the owner on Dec 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ let log = (str) => {};
99
1010module . 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 }
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ if (env.isSystemSupported()) {
2323// due to some memory bug.
2424class 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 {
You can’t perform that action at this time.
0 commit comments