Skip to content

Commit f9b9812

Browse files
authored
chore: release package v1.5.0 (#133)
feat: update SelectList methods - all and available test: enhance testing for with/without record types ci(dependabot): update Dependabot scripts docs: update method tables docs: update ApexDox test: include unpackaged SelectList test page docs: ApexDox css files cleanup style(Prettier): update Prettier config file
1 parent c391e79 commit f9b9812

Some content is hidden

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

59 files changed

+7394
-5280
lines changed

.forceignore

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,23 @@ package.xml
1414
**/__tests__/**
1515

1616
# Unwanted org metadata to ignore
17+
18+
# profiles
1719
*.profile
18-
*.settings
20+
*.profile-meta.xml
21+
Admin.*
22+
23+
# Other permission sets
24+
*.permissionset-meta.xml
25+
!RecordTypes_DefaultRT_for_Testing.permissionset-meta.xml
26+
27+
# Page Layouts
28+
#**/*.layout-meta.xml
29+
30+
# Settings
31+
*.settings
32+
**/*.settings-meta.xml
33+
34+
# Record Types
35+
#*.RecordType-meta.xml
36+
!Default.recordType-meta.xml

.husky/pre-commit

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
npm run precommit
5-
npm run prettier:docs
2+
npm run prettier:docs

.prettierignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
coverage/
1111
# ApexDox website
12-
docs/
12+
doc*/**/*.js
1313
highlight.js
1414

1515
# Exclude project config
16-
sfdx-project.json
16+
#sfdx-project.json
1717
dependencies.json

.prettierrc

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"trailingComma": "none",
33
"apexInsertFinalNewline": false,
4+
"endOfLine": "lf",
45
"useTabs": true,
56
"printWidth": 160,
67
"tabWidth": 2,
@@ -10,28 +11,28 @@
1011
"files": "**/lwc/**/*.html",
1112
"options": { "parser": "lwc" }
1213
},
13-
{
14-
"files": ".prettierrc",
15-
"options": { "parser": "json", "printWidth": 80 }
16-
},
1714
{
1815
"files": "*.{cmp,page,component}",
1916
"options": { "parser": "html" }
2017
},
21-
{
22-
"files": ".json",
23-
"options": { "parser": "json", "printWidth": 80 }
24-
},
2518
{
2619
"files": "*.{yaml,yml}",
2720
"options": { "useTabs": false, "tabWidth": 2, "singleQuote": true }
2821
},
2922
{
30-
"files": "*.json",
23+
"files": "doc*/*.js",
24+
"options": {
25+
"parser": "babel",
26+
"singleQuote": false
27+
}
28+
},
29+
{
30+
"files": "*.{prettierrc, json}",
3131
"options": {
32-
"useTabs": true,
3332
"parser": "json",
34-
"printWidth": 80
33+
"printWidth": 80,
34+
"useTabs": true,
35+
"singleQuote": false
3536
}
3637
},
3738
{
@@ -41,7 +42,7 @@
4142
"useTabs": true,
4243
"tabWidth": 2,
4344
"printWidth": 150,
44-
"htmlWhitespaceSensitivity": "css",
45+
"htmlWhitespaceSensitivity": "ignore",
4546
"singleQuote": false
4647
}
4748
}

.vscode/settings.json

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
{
2+
"apexdox.docblock.alignItems": true,
3+
"apexPMD.enableCache": true,
4+
"apexPMD.rulesets": [
5+
"pmd/apexQuickStart.xml"
6+
],
7+
"apexPMD.runOnFileChange": true,
8+
"apexPMD.runOnFileOpen": true,
9+
"apexPMD.showStdOut": true,
10+
"editor.bracketPairColorization.enabled": true,
11+
"editor.defaultFormatter": "esbenp.prettier-vscode",
12+
"editor.detectIndentation": true,
13+
"editor.guides.bracketPairs": "active",
14+
"editor.insertSpaces": false,
15+
"editor.tabSize": 2,
16+
"force.showApexJavadocAuthorTag": true,
17+
"force.showApexJavadocContext": true,
18+
"force.showApexJavadocDescriptionTag": false,
219
"search.exclude": {
3-
"**/node_modules": true,
4-
"**/bower_components": true,
20+
"**/.sf": true,
521
"**/.sfdx": true,
6-
"**/.sf": true
7-
},
8-
"editor.insertSpaces": false,
9-
"editor.detectIndentation": true,
10-
"apexPMD.rulesets": [
11-
"pmd/apexQuickStart.xml"
12-
],
13-
"apexPMD.runOnFileChange": true,
14-
"apexPMD.runOnFileOpen": true,
15-
"apexPMD.showStdOut": true,
16-
"apexPMD.enableCache": true,
17-
"editor.tabSize": 2,
18-
"editor.bracketPairColorization.enabled": true,
19-
"editor.guides.bracketPairs": "active",
20-
"editor.defaultFormatter": "esbenp.prettier-vscode",
21-
"force.showApexJavadocAuthorTag": true,
22-
"force.showApexJavadocContext": true,
23-
"force.showApexJavadocDescriptionTag": false,
24-
"apexdox.docblock.alignItems": true
25-
}
22+
"**/bower_components": true,
23+
"**/node_modules": true
24+
},
25+
"visualforce.format.endWithNewline": true
26+
}

0 commit comments

Comments
 (0)