Skip to content
This repository was archived by the owner on Nov 20, 2021. It is now read-only.

Commit 53234e4

Browse files
committed
Allow debugging through config.json
1 parent 82de2b8 commit 53234e4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const defaultEngineConfig = {
1111
config: {
1212
file: null
1313
},
14+
debug: false,
1415
enabled: true,
1516
exclude_paths: [],
1617
include_paths: ["./"],

test/config_test.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const defaultConfig = {
66
file: null
77
},
88
enabled: true,
9+
debug: false,
910
exclude_paths: [],
1011
include_paths: ["./"],
1112
rules: {}
@@ -51,6 +52,7 @@ describe("config", () => {
5152
file: "my-sass-lint.yml"
5253
},
5354
enabled: true,
55+
debug: false,
5456
exclude_paths: [
5557
"config/",
5658
".gitignore"
@@ -87,6 +89,7 @@ describe("config", () => {
8789
config: {
8890
file: "my-sass-lint.yml"
8991
},
92+
debug: false,
9093
enabled: true,
9194
exclude_paths: [],
9295
include_paths: ["./"],
@@ -103,6 +106,7 @@ describe("config", () => {
103106
file: "my-sass-lint.yml"
104107
},
105108
enabled: true,
109+
debug: false,
106110
exclude_paths: [
107111
"config/",
108112
".gitignore"

0 commit comments

Comments
 (0)