Skip to content

Commit bef09c0

Browse files
first public release
0 parents  commit bef09c0

File tree

121 files changed

+37351
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+37351
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# PR details
2+
3+
## What is the purpose of this pull request? (put an "X" next to an item)
4+
5+
- [ ] Documentation update
6+
- [ ] Bug fix
7+
- [ ] New metadata support
8+
- [ ] Enhanced metadata
9+
- [ ] Add a CLI option
10+
- [ ] Add something to the core
11+
- [ ] Other, please explain:
12+
13+
## What changes did you make? (Give an overview)
14+
15+
...
16+
17+
## Is there anything you'd like reviewers to focus on?
18+
19+
...

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
indent_style = space
6+
indent_size = 4
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/docs/**
2+
/node_modules/**
3+
/retrieve/**

.eslintrc.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"env": {
3+
"es6": true,
4+
"node": true,
5+
"mocha": true
6+
},
7+
"extends": ["eslint:recommended", "prettier", "ssjs"],
8+
"plugins": ["mocha", "prettier"],
9+
"globals": {
10+
"Atomics": "readonly",
11+
"SharedArrayBuffer": "readonly"
12+
},
13+
"parserOptions": {
14+
"ecmaVersion": 2018,
15+
"sourceType": "module"
16+
},
17+
"rules": {
18+
"arrow-body-style": ["error", "as-needed"],
19+
"curly": "error",
20+
"mocha/no-exclusive-tests": "error",
21+
"no-console": "off",
22+
"require-jsdoc": [
23+
"warn",
24+
{
25+
"require": {
26+
"FunctionDeclaration": true,
27+
"MethodDefinition": true,
28+
"ClassDeclaration": true,
29+
"ArrowFunctionExpression": false,
30+
"FunctionExpression": true
31+
}
32+
}
33+
],
34+
"valid-jsdoc": "error",
35+
"spaced-comment": ["warn", "always", { "block": { "exceptions": ["*"], "balanced": true } }]
36+
},
37+
"overrides": [
38+
{
39+
"files": ["*.js"],
40+
"rules": {
41+
"no-var": "error",
42+
"prefer-const": "error",
43+
"prettier/prettier": "warn"
44+
}
45+
}
46+
]
47+
}

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto eol=lf
3+
4+
# Declare files that will always have LF line endings on checkout.
5+
*.ssjs text eol=lf

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# PR details
2+
3+
## What is the purpose of this pull request? (put an "X" next to an item)
4+
5+
- [ ] Documentation update
6+
- [ ] Bug fix
7+
- [ ] New metadata support
8+
- [ ] Enhanced metadata
9+
- [ ] Add a CLI option
10+
- [ ] Add something to the core
11+
- [ ] Other, please explain:
12+
13+
## What changes did you make? (Give an overview)
14+
15+
...
16+
17+
## Is there anything you'd like reviewers to focus on?
18+
19+
...

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
businessUnits/
2+
deploy/
3+
docs/
4+
logs/
5+
node_modules/
6+
retrieve/
7+
roles/
8+
template/
9+
tmp/
10+
.mcdev-auth.json
11+
.mcdevrc.json
12+
.vscode/tasks.json

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx --no lint-staged

.issuetracker

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Integration with Issue Tracker
2+
#
3+
# (note that '\' need to be escaped).
4+
5+
[issuetracker "Jira Rule"]
6+
regex = "CSCLSROZ-(\\d+)"
7+
url = "https://alm.accenture.com/jira/browse/CSCLSROZ-$1"

0 commit comments

Comments
 (0)