Skip to content

Commit d7bf444

Browse files
committed
Enable lint test for KRSv2
JIRA: BG-19296
1 parent 0c65d77 commit d7bf444

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.drone.jsonnet

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,13 @@ local step(
7575
"npm install",
7676
],
7777
),
78-
/// step(
79-
/// name = "lint",
80-
/// image = "node:10",
81-
/// failure = true,
82-
/// commands = [
83-
/// "npm run lint",
84-
/// ],
85-
/// ),
78+
step(
79+
name = "lint",
80+
image = "node:10",
81+
commands = [
82+
"npm run lint",
83+
],
84+
),
8685
],
8786
),
8887
pipeline(

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"rules": {
1818
"operator-linebreak": ["error", "before"],
19-
"max-len": ["error", { "code": 256 } ],
19+
"max-len": ["error", { "code": 120 } ],
2020
"indent": ["error", 2, {"SwitchCase": 1, "MemberExpression": "off"}],
2121
"linebreak-style": ["error", "unix"],
2222
"semi": ["error", "always"],

0 commit comments

Comments
 (0)