Skip to content

Commit b0ec75a

Browse files
author
abraham.lloyd
committed
... initial commit.
0 parents  commit b0ec75a

File tree

779 files changed

+119389
-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.

779 files changed

+119389
-0
lines changed

.eslintignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
**/lwc/**/*.css
2+
**/lwc/**/*.html
3+
**/lwc/**/*.json
4+
**/lwc/**/*.svg
5+
**/lwc/**/*.xml
6+
.sfdx

.forceignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status
2+
# More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm
3+
#
4+
5+
package.xml
6+
7+
# LWC configuration files
8+
**/jsconfig.json
9+
**/.eslintrc.json
10+
11+
# LWC Jest
12+
**/__tests__/**
13+
14+
# Ignore profiles
15+
Custom%3A Marketing Profile.profile
16+
Custom%3A Sales Profile.profile
17+
Custom%3A Support Profile.profile

.gitignore

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Webstorm / vsCode Project Directory
2+
/.idea/
3+
/.vscode/
4+
/.sfdx/
5+
/IlluminatedCloud/
6+
7+
# Plugin-specific files
8+
out/
9+
10+
# Salesforce cache
11+
.sfdx/
12+
.localdevserver/
13+
14+
# LWC VSCode autocomplete
15+
**/lwc/jsconfig.json
16+
17+
# LWC Jest coverage reports
18+
coverage/
19+
20+
# macOS template
21+
# General
22+
*.DS_Store
23+
.AppleDouble
24+
.LSOverride
25+
*.code-workspace
26+
27+
# Code Recommenders
28+
.recommenders/
29+
30+
# Logs
31+
logs
32+
*.log
33+
npm-debug.log*
34+
yarn-debug.log*
35+
yarn-error.log*
36+
37+
# Runtime data
38+
pids
39+
*.pid
40+
*.seed
41+
*.pid.lock
42+
43+
# Optional npm cache directory
44+
/.npm
45+
46+
# Optional eslint cache
47+
/.eslintcache
48+
49+
# misc
50+
/.scratch
51+
/_deploy
52+
/node_modules
53+
54+
# dotenv environment variables file
55+
.env
56+
*.alt
57+
58+
# Ignore dwupload config
59+
dw.json
60+
61+
# MacOS system files
62+
.DS_Store
63+
64+
# Windows system files
65+
Thumbs.db
66+
ehthumbs.db
67+
[Dd]esktop.ini
68+
$RECYCLE.BIN/
69+
70+
# Ignore rendered sfdx meta-data templates (vs. the template)
71+
/src/sfdc/force-app/main/default/cspTrustedSites/
72+
/src/sfdc/force-app/main/default/remoteSiteSettings/
73+
/src/sfdc/force-app/main/default/namedCredentials/
74+
/src/sfdc/force-app/main/default/connectedApps/
75+
76+
# Ignore the rendered connectedAppCredentails file
77+
/config-dx/connectedAppCredentials.json
78+
79+
# Ignore sfcc services.xml meta-data generated-files
80+
/src/sfcc/site-template/services.xml
81+
82+
# Ignore my test-deployment file
83+
**DeployTest.*
84+
.nyc_output

.mocharc.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
'use strict'
2+
3+
module.exports = {
4+
recursive: true,
5+
extension: ['test.js'],
6+
package: './package.json',
7+
reporter: 'spec',
8+
slow: 1000,
9+
timeout: 3000
10+
}

.prettierignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# List files or directories below to ignore them when running prettier
2+
# More information: https://prettier.io/docs/en/ignore.html
3+
#
4+
5+
.localdevserver
6+
.sfdx
7+
8+
coverage/

.prettierrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"trailingComma": "none",
3+
"overrides": [
4+
{
5+
"files": "**/lwc/**/*.html",
6+
"options": { "parser": "lwc" }
7+
},
8+
{
9+
"files": "*.{cmp,page,component}",
10+
"options": { "parser": "html" }
11+
}
12+
]
13+
}

License.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Copyright (c) 2021, Salesforce.com, Inc.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5+
6+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7+
8+
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9+
10+
* Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
11+
12+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)