Skip to content

Commit 2c64620

Browse files
authored
Merge pull request #11 from forcedotcom/cristi/poc
feat: poc for anInitialSuite and createProject running on GHA
2 parents 9cd96b1 + d1ba953 commit 2c64620

33 files changed

+1885
-879
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/node_modules
2-
/.vscode
32
/.DS_Store
43
/lib
4+
/e2e-temp
5+
/.sfdx

.mocharc.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"timeout": 240000
3-
}
2+
"timeout": 240000,
3+
"reporter": "./lib/custom-summary-reporter.js"
4+
}

.prettierrc

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"printWidth": 100,
2+
"printWidth": 120,
33
"tabWidth": 2,
44
"singleQuote": true,
5-
"trailingComma": "none"
5+
"trailingComma": "none",
6+
"arrowParens": "avoid"
67
}

.vscode/settings.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"search.exclude": {
3+
"**/lib": true
4+
},
5+
"typescript.tsdk": "./node_modules/typescript/lib",
6+
"eslint.workingDirectories": ["./test"],
7+
"editor.tabSize": 2,
8+
"editor.insertSpaces": true,
9+
"editor.detectIndentation": true,
10+
"files.trimTrailingWhitespace": true,
11+
"files.insertFinalNewline": true,
12+
"files.trimFinalNewlines": true,
13+
"editor.formatOnSave": true,
14+
"eslint.enable": true,
15+
"eslint.run": "onSave",
16+
"editor.codeActionsOnSave": {
17+
"source.fixAll.eslint": "always"
18+
},
19+
"prettier.singleQuote": true,
20+
"prettier.trailingComma": "none",
21+
"prettier.tabWidth": 2,
22+
"prettier.useTabs": false,
23+
"prettier.printWidth": 120,
24+
"prettier.arrowParens": "avoid",
25+
"editor.rulers": [120]
26+
}

0 commit comments

Comments
 (0)