Skip to content

Commit 1e7ef59

Browse files
committed
Configure Arcanist
Summary: Repository code: rDO Linters: from rOPS Test Plan: `arc which` `arc lint --everything` Reviewers: dereckson Reviewed By: dereckson Differential Revision: https://devcentral.nasqueron.org/D2298
1 parent d3f31cd commit 1e7ef59

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

.arcconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"phabricator.uri": "https://devcentral.nasqueron.org/",
3+
"repository.callsign": "DO",
4+
"load": [
5+
"shellcheck-linter"
6+
]
7+
}

.arclint

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"linters": {
3+
"chmod": {
4+
"type": "chmod"
5+
},
6+
"shell": {
7+
"type": "shellcheck",
8+
"include": [
9+
"(\\.sh$)"
10+
]
11+
},
12+
"filename": {
13+
"type": "filename"
14+
},
15+
"json": {
16+
"type": "json",
17+
"include": [
18+
"(^\\.arcconfig$)",
19+
"(^\\.arclint$)",
20+
"(\\.json$)"
21+
]
22+
}
23+
}
24+
}

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
VERSION
22
README.md
33
Changelog.md
4+
.arc*

0 commit comments

Comments
 (0)