Skip to content

Commit

Permalink
add back git ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel94104 committed Sep 8, 2023
1 parent 5b9f8f4 commit 652a1ff
Show file tree
Hide file tree
Showing 22 changed files with 227 additions and 97 deletions.
16 changes: 16 additions & 0 deletions ServiceDocumentSampleComponents/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
**/lwc/**/*.css
**/lwc/**/*.html
**/lwc/**/*.json
**/lwc/**/*.svg
**/lwc/**/*.xml
**/aura/**/*.auradoc
**/aura/**/*.cmp
**/aura/**/*.css
**/aura/**/*.design
**/aura/**/*.evt
**/aura/**/*.json
**/aura/**/*.svg
**/aura/**/*.tokens
**/aura/**/*.xml
**/aura/**/*.app
.sfdx
12 changes: 12 additions & 0 deletions ServiceDocumentSampleComponents/.forceignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status
# More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm
#

package.xml

# LWC configuration files
**/jsconfig.json
**/.eslintrc.json

# LWC Jest
**/__tests__/**
45 changes: 45 additions & 0 deletions ServiceDocumentSampleComponents/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# This file is used for Git repositories to specify intentionally untracked files that Git should ignore.
# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore
# For useful gitignore templates see: https://github.com/github/gitignore

# Salesforce cache
.sf/
.sfdx/
.localdevserver/
deploy-options.json

# LWC VSCode autocomplete
**/lwc/jsconfig.json

# LWC Jest coverage reports
coverage/

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependency directories
node_modules/

# Eslint cache
.eslintcache

# MacOS system files
.DS_Store

# Windows system files
Thumbs.db
ehthumbs.db
[Dd]esktop.ini
$RECYCLE.BIN/

# Local environment variables
.env

# Python Salesforce Functions
**/__pycache__/
**/.venv/
**/venv/
4 changes: 4 additions & 0 deletions ServiceDocumentSampleComponents/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run precommit
10 changes: 10 additions & 0 deletions ServiceDocumentSampleComponents/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# List files or directories below to ignore them when running prettier
# More information: https://prettier.io/docs/en/ignore.html
#

**/staticresources/**
.localdevserver
.sfdx
.vscode

coverage/
13 changes: 13 additions & 0 deletions ServiceDocumentSampleComponents/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"trailingComma": "none",
"overrides": [
{
"files": "**/lwc/**/*.html",
"options": { "parser": "lwc" }
},
{
"files": "*.{cmp,page,component}",
"options": { "parser": "html" }
}
]
}
9 changes: 9 additions & 0 deletions ServiceDocumentSampleComponents/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"salesforce.salesforcedx-vscode",
"redhat.vscode-xml",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"financialforce.lana"
]
}
16 changes: 16 additions & 0 deletions ServiceDocumentSampleComponents/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Apex Replay Debugger",
"type": "apex-replay",
"request": "launch",
"logFile": "${command:AskForLogFileName}",
"stopOnEntry": true,
"trace": true
}
]
}
7 changes: 7 additions & 0 deletions ServiceDocumentSampleComponents/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.sfdx": true
}
}
20 changes: 10 additions & 10 deletions ServiceDocumentSampleComponents/config/project-scratch-def.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"orgName": "giaoge.zheng company",
"edition": "Developer",
"features": ["EnableSetPasswordInApi"],
"settings": {
"lightningExperienceSettings": {
"enableS1DesktopEnabled": true
},
"mobileSettings": {
"enableS1EncryptedStoragePref2": false
"orgName": "giaoge.zheng company",
"edition": "Developer",
"features": ["EnableSetPasswordInApi"],
"settings": {
"lightningExperienceSettings": {
"enableS1DesktopEnabled": true
},
"mobileSettings": {
"enableS1EncryptedStoragePref2": false
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"plugins": ["@salesforce/eslint-plugin-aura"],
"extends": ["plugin:@salesforce/eslint-plugin-aura/recommended"],
"rules": {
"vars-on-top": "off",
"no-unused-expressions": "off"
}
"plugins": ["@salesforce/eslint-plugin-aura"],
"extends": ["plugin:@salesforce/eslint-plugin-aura/recommended"],
"rules": {
"vars-on-top": "off",
"no-unused-expressions": "off"
}
}
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"extends": ["@salesforce/eslint-config-lwc/recommended"],
"overrides": [
{
"files": ["*.test.js"],
"rules": {
"@lwc/lwc/no-unexpected-wire-adapter-usages": "off"
},
"env": {
"node": true
}
}
]
"extends": ["@salesforce/eslint-config-lwc/recommended"],
"overrides": [
{
"files": ["*.test.js"],
"rules": {
"@lwc/lwc/no-unexpected-wire-adapter-usages": "off"
},
"env": {
"node": true
}
}
]
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<template>
<div class="slds-box slds-var-m-top_medium">
<h3 class="slds-text-heading_medium slds-var-m-bottom_small">
{workPlanRecord.Name.value}
</h3>
<h3 class="slds-text-heading_medium slds-var-m-bottom_small">{workPlanRecord.Name.value}</h3>
<p class="slds-var-p-bottom_small">{workPlanRecord.Description.value}</p>

<h4 class="slds-text-heading_small slds-var-p-bottom_medium">Work Steps</h4>
Expand All @@ -17,10 +15,10 @@ <h4 class="slds-text-heading_small slds-var-p-bottom_medium">Work Steps</h4>
</tr>
</thead>
<tbody>
<template for:each={_workStepRecords} for:item="workStepRecord">
<template for:each="{_workStepRecords}" for:item="workStepRecord">
<c-demo-work-step-presentation
key={workStepRecord.node.Id}
work-step-record={workStepRecord}
key="{workStepRecord.node.Id}"
work-step-record="{workStepRecord}"
></c-demo-work-step-presentation>
</template>
</tbody>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { LightningElement, api, wire, track } from "lwc";
import { gql, graphql } from "lightning/uiGraphQLApi";
import { LightningElement, api, wire, track } from 'lwc';
import { gql, graphql } from 'lightning/uiGraphQLApi';

export default class DemoWorkPlan extends LightningElement {
@api workPlanId;
Expand Down Expand Up @@ -27,8 +27,8 @@ export default class DemoWorkPlan extends LightningElement {
}

@wire(graphql, {
query: "$workStepQuery",
variables: "$workStepVariables"
query: '$workStepQuery',
variables: '$workStepVariables',
})
handleWorkStepGql(val) {
if (val && val.errors && val.errors.length > 0) {
Expand Down Expand Up @@ -80,7 +80,7 @@ export default class DemoWorkPlan extends LightningElement {
}
get workStepVariables() {
return {
parentId: this.workPlanId
parentId: this.workPlanId,
};
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { LightningElement, api } from "lwc";
import { LightningElement, api } from 'lwc';

export default class DemoWorkStepPresentation extends LightningElement {
@api
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<template>
<h2 class="slds-text-heading_medium" style={inlineStyle}>{text}</h2>
<h2 class="slds-text-heading_medium" style="{inlineStyle}">{text}</h2>
</template>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { LightningElement, api } from "lwc";
import { LightningElement, api } from 'lwc';

export default class MediumHeaderText extends LightningElement {
@api text;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<div class="image" style={inlineStyle}>
<img src={salesforceUrl} />
<div class="image" style="{inlineStyle}">
<img src="{salesforceUrl}" />
</div>
</div>
</template>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { LightningElement, api } from "lwc";
import SALESFORCE_LOGO from "@salesforce/contentAssetUrl/salesforce";
import { LightningElement, api } from 'lwc';
import SALESFORCE_LOGO from '@salesforce/contentAssetUrl/salesforce';
export default class DemoSalesforceLogo extends LightningElement {
@api width;
@api height;
Expand Down
4 changes: 2 additions & 2 deletions ServiceDocumentSampleComponents/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { jestConfig } = require("@salesforce/sfdx-lwc-jest/config");
const { jestConfig } = require('@salesforce/sfdx-lwc-jest/config');

module.exports = {
...jestConfig,
modulePathIgnorePatterns: ["<rootDir>/.localdevserver"]
modulePathIgnorePatterns: ['<rootDir>/.localdevserver'],
};
78 changes: 39 additions & 39 deletions ServiceDocumentSampleComponents/package.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
{
"name": "salesforce-app",
"private": true,
"version": "1.0.0",
"description": "Salesforce App",
"scripts": {
"lint": "eslint **/{aura,lwc}/**",
"test": "npm run test:unit",
"test:unit": "sfdx-lwc-jest",
"test:unit:watch": "sfdx-lwc-jest --watch",
"test:unit:debug": "sfdx-lwc-jest --debug",
"test:unit:coverage": "sfdx-lwc-jest --coverage",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"postinstall": "husky install",
"precommit": "lint-staged"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.1.2",
"@prettier/plugin-xml": "^2.0.1",
"@salesforce/eslint-config-lwc": "^3.2.3",
"@salesforce/eslint-plugin-aura": "^2.0.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^1.1.0",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"prettier-plugin-apex": "^1.10.0"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/{aura,lwc}/**": [
"eslint"
]
}
"name": "salesforce-app",
"private": true,
"version": "1.0.0",
"description": "Salesforce App",
"scripts": {
"lint": "eslint **/{aura,lwc}/**",
"test": "npm run test:unit",
"test:unit": "sfdx-lwc-jest",
"test:unit:watch": "sfdx-lwc-jest --watch",
"test:unit:debug": "sfdx-lwc-jest --debug",
"test:unit:coverage": "sfdx-lwc-jest --coverage",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"postinstall": "husky install",
"precommit": "lint-staged"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.1.2",
"@prettier/plugin-xml": "^2.0.1",
"@salesforce/eslint-config-lwc": "^3.2.3",
"@salesforce/eslint-plugin-aura": "^2.0.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^1.1.0",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"prettier-plugin-apex": "^1.10.0"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/{aura,lwc}/**": [
"eslint"
]
}
}
Loading

0 comments on commit 652a1ff

Please sign in to comment.