Skip to content

Commit 085a68a

Browse files
committed
Updates on files
1 parent af759fb commit 085a68a

File tree

122 files changed

+869651
-1065538
lines changed

Some content is hidden

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

122 files changed

+869651
-1065538
lines changed

.codeclimate.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ ratings:
4040
- '**.css'
4141

4242
exclude_patterns:
43-
- "dist/"
44-
- "docs/"
45-
- "scripts/"
46-
- "test/"
47-
- "*.js"
48-
- "*.json"
49-
- "*.md"
50-
- ".*"
43+
- 'dist/'
44+
- 'docs/'
45+
- 'scripts/'
46+
- 'test/'
47+
- '*.js'
48+
- '*.json'
49+
- '*.md'
50+
- '.*'

.codesandbox/ci.json

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
{
2-
"packages": [
3-
"packages/*"
4-
],
5-
"sandboxes": [
6-
"packages/contributors/src",
7-
"packages/changelog/src"
8-
],
9-
"buildCommand": "all",
10-
"node": "16"
2+
"packages": ["packages/*"],
3+
"sandboxes": ["packages/contributors/src", "packages/changelog/src"],
4+
"buildCommand": "all",
5+
"node": "16"
116
}

.env.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"DOCKER_IMAGE_JAVA_PATTERNS": "styled-java-patterns",
3-
"ENABLE_MKDOCS_SIMPLE_HOOKS": "true"
2+
"DOCKER_IMAGE_JAVA_PATTERNS": "styled-java-patterns",
3+
"ENABLE_MKDOCS_SIMPLE_HOOKS": "true"
44
}

.gitpod.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ image:
2121
file: .gitpod.Dockerfile
2222

2323
ports:
24-
- port: 8000
25-
onOpen: open-preview
24+
- port: 8000
25+
onOpen: open-preview
2626

2727
tasks:
28-
- init: npm install && npm run all
29-
command: >
30-
npm run lerna:dist &&
31-
printf "\nWelcome to Java Design Patterns Docs\nTo rebuild the app, simply run './scripts/build-docs.sh' and reload index.html.\n\n" &&
32-
chmod +x ./scripts/build-docs.sh && ./scripts/build-docs.sh 2>/dev/null
28+
- init: npm install && npm run all
29+
command: >
30+
npm run lerna:dist && printf "\nWelcome to Java Design Patterns Docs\nTo
31+
rebuild the app, simply run './scripts/build-docs.sh' and reload
32+
index.html.\n\n" && chmod +x ./scripts/build-docs.sh &&
33+
./scripts/build-docs.sh 2>/dev/null

.lintstagedrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"**/*.{json,yaml,yml}": "prettier --single-quote --write --ignore-unknown"
2+
"**/*.{json,yaml,yml}": "prettier --single-quote --write --ignore-unknown"
33
}

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default_stages: [commit, push]
44
default_language_version:
55
# force all unspecified Python hooks to run python3
66
python: python3
7-
minimum_pre_commit_version: "1.20.0"
7+
minimum_pre_commit_version: '1.20.0'
88
repos:
99
- repo: https://github.com/peterdemin/pip-compile-multi
1010
rev: v2.4.1

.prettierrc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$schema: http://json.schemastore.org/prettierrc
22
printWidth: 110
33
tabWidth: 4
4-
useTabs: false
4+
useTabs: true
55
endOfLine: lf
66
semi: false
77
singleQuote: true

.pullapprove.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ groups:
1111
general-approvers:
1212
conditions:
1313
files:
14-
- "*"
14+
- '*'
1515
required: 1
1616
users:
1717
- AlexRogalskiy

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: 2
88
build:
99
os: ubuntu-20.04
1010
tools:
11-
python: "3.8"
11+
python: '3.8'
1212

1313
# Optionally build your docs in additional formats such as PDF and ePub
1414
formats:

.release-it.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"git": {
3-
"commitMessage": "chore(release): v${version}",
4-
"requireBranch": "main",
5-
"requireCommits": true,
6-
"tagName": "v${version}",
7-
"push": true
8-
},
9-
"github": {
10-
"release": true
11-
},
12-
"npm": {
13-
"publish": false
14-
}
2+
"git": {
3+
"commitMessage": "chore(release): v${version}",
4+
"requireBranch": "main",
5+
"requireCommits": true,
6+
"tagName": "v${version}",
7+
"push": true
8+
},
9+
"github": {
10+
"release": true
11+
},
12+
"npm": {
13+
"publish": false
14+
}
1515
}

.stylelintrc.json

+31-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
{
2-
"extends": "stylelint-config-standard",
3-
"plugins": ["stylelint-order", "stylelint-scss"],
4-
"rules": {
5-
"indentation": 4,
6-
"at-rule-empty-line-before": null,
7-
"color-hex-length": null,
8-
"no-descending-specificity": null,
9-
"rule-empty-line-before": null,
10-
"selector-list-comma-newline-after": null,
11-
"declaration-block-trailing-semicolon": null,
12-
"block-closing-brace-empty-line-before": null,
13-
"block-closing-brace-space-before": null,
14-
"block-opening-brace-space-before": null,
15-
"block-opening-brace-space-after": null,
16-
"function-comma-space-after": null,
17-
"media-query-list-comma-space-after": null,
18-
"declaration-colon-space-after": null,
19-
"declaration-block-semicolon-space-after": null,
20-
"block-closing-brace-newline-after": null,
21-
"declaration-block-single-line-max-declarations": null,
22-
"number-no-trailing-zeros": null,
23-
"number-leading-zero": null,
24-
"comment-empty-line-before": null,
25-
"length-zero-no-unit": null,
26-
"value-keyword-case": null,
27-
"comment-whitespace-inside": null,
28-
"declaration-empty-line-before": null,
29-
"max-empty-lines": null,
30-
"no-duplicate-selectors": null,
31-
"selector-pseudo-element-colon-notation": null
32-
}
2+
"extends": "stylelint-config-standard",
3+
"plugins": ["stylelint-order", "stylelint-scss"],
4+
"rules": {
5+
"indentation": 4,
6+
"at-rule-empty-line-before": null,
7+
"color-hex-length": null,
8+
"no-descending-specificity": null,
9+
"rule-empty-line-before": null,
10+
"selector-list-comma-newline-after": null,
11+
"declaration-block-trailing-semicolon": null,
12+
"block-closing-brace-empty-line-before": null,
13+
"block-closing-brace-space-before": null,
14+
"block-opening-brace-space-before": null,
15+
"block-opening-brace-space-after": null,
16+
"function-comma-space-after": null,
17+
"media-query-list-comma-space-after": null,
18+
"declaration-colon-space-after": null,
19+
"declaration-block-semicolon-space-after": null,
20+
"block-closing-brace-newline-after": null,
21+
"declaration-block-single-line-max-declarations": null,
22+
"number-no-trailing-zeros": null,
23+
"number-leading-zero": null,
24+
"comment-empty-line-before": null,
25+
"length-zero-no-unit": null,
26+
"value-keyword-case": null,
27+
"comment-whitespace-inside": null,
28+
"declaration-empty-line-before": null,
29+
"max-empty-lines": null,
30+
"no-duplicate-selectors": null,
31+
"selector-pseudo-element-colon-notation": null
32+
}
3333
}

.syncpackrc.json

+13-28
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,15 @@
11
{
2-
"dev": true,
3-
"filter": ".",
4-
"indent": " ",
5-
"overrides": true,
6-
"peer": true,
7-
"prod": true,
8-
"resolutions": true,
9-
"semverGroups": [],
10-
"semverRange": "",
11-
"sortAz": [
12-
"contributors",
13-
"dependencies",
14-
"devDependencies",
15-
"keywords",
16-
"peerDependencies",
17-
"scripts"
18-
],
19-
"sortFirst": [
20-
"name",
21-
"description",
22-
"version",
23-
"author"
24-
],
25-
"source": [
26-
"package.json",
27-
"packages/*/package.json"
28-
],
29-
"versionGroups": []
2+
"dev": true,
3+
"filter": ".",
4+
"indent": " ",
5+
"overrides": true,
6+
"peer": true,
7+
"prod": true,
8+
"resolutions": true,
9+
"semverGroups": [],
10+
"semverRange": "",
11+
"sortAz": ["contributors", "dependencies", "devDependencies", "keywords", "peerDependencies", "scripts"],
12+
"sortFirst": ["name", "description", "version", "author"],
13+
"source": ["package.json", "packages/*/package.json"],
14+
"versionGroups": []
3015
}

0 commit comments

Comments
 (0)