Skip to content

Commit d946e20

Browse files
Copy simplified contents of CSS repo
1 parent b6d318c commit d946e20

File tree

907 files changed

+78059
-9848
lines changed

Some content is hidden

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

907 files changed

+78059
-9848
lines changed

.componentsignore

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
[
2+
"AccessMap",
3+
"Adapter",
4+
"AlgJwk",
5+
"BaseActivityEmitter",
6+
"BaseChannelType",
7+
"BaseHttpError",
8+
"BaseRouterHandler",
9+
"BasicConditions",
10+
"BasicRepresentation",
11+
"ChangeMap",
12+
"CredentialSet",
13+
"Dict",
14+
"EmptyObject",
15+
"Error",
16+
"EventEmitter",
17+
"FetchDocumentLoader",
18+
"GenericEventEmitter",
19+
"HashMap",
20+
"HttpErrorOptions",
21+
"HttpResponse",
22+
"IndexTypeCollection",
23+
"IdentifierMap",
24+
"IdentifierSetMultiMap",
25+
"interactionPolicy.DefaultPolicy",
26+
"NodeJS.Dict",
27+
"NotificationChannelType",
28+
"Omit",
29+
"PermissionMap",
30+
"Promise",
31+
"Readable",
32+
"Readonly",
33+
"RegExp",
34+
"Server",
35+
"SetMultiMap",
36+
"Shorthand",
37+
"Template",
38+
"TemplateEngine",
39+
"Transform",
40+
"TransformOptions",
41+
"ValuePreferencesArg",
42+
"VariableBindings",
43+
"UnionHandler",
44+
"VirtualObject",
45+
"WinstonLogger",
46+
"WrappedSetMultiMap",
47+
"YargsOptions"
48+
]

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.gitignore

+9-109
Original file line numberDiff line numberDiff line change
@@ -1,109 +1,9 @@
1-
# from readme instructions
2-
data
3-
self-signed.key
4-
self-signed.crt
5-
6-
# Logs
7-
logs
8-
*.log
9-
npm-debug.log*
10-
yarn-debug.log*
11-
yarn-error.log*
12-
lerna-debug.log*
13-
14-
# Diagnostic reports (https://nodejs.org/api/report.html)
15-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
16-
17-
# Runtime data
18-
pids
19-
*.pid
20-
*.seed
21-
*.pid.lock
22-
23-
# Directory for instrumented libs generated by jscoverage/JSCover
24-
lib-cov
25-
26-
# Coverage directory used by tools like istanbul
27-
coverage
28-
*.lcov
29-
30-
# nyc test coverage
31-
.nyc_output
32-
33-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34-
.grunt
35-
36-
# Bower dependency directory (https://bower.io/)
37-
bower_components
38-
39-
# node-waf configuration
40-
.lock-wscript
41-
42-
# Compiled binary addons (https://nodejs.org/api/addons.html)
43-
build/Release
44-
45-
# Dependency directories
46-
node_modules/
47-
jspm_packages/
48-
49-
# TypeScript v1 declaration files
50-
typings/
51-
52-
# TypeScript cache
53-
*.tsbuildinfo
54-
55-
# Optional npm cache directory
56-
.npm
57-
58-
# Optional eslint cache
59-
.eslintcache
60-
61-
# Microbundle cache
62-
.rpt2_cache/
63-
.rts2_cache_cjs/
64-
.rts2_cache_es/
65-
.rts2_cache_umd/
66-
67-
# Optional REPL history
68-
.node_repl_history
69-
70-
# Output of 'npm pack'
71-
*.tgz
72-
73-
# Yarn Integrity file
74-
.yarn-integrity
75-
76-
# dotenv environment variables file
77-
.env
78-
.env.test
79-
80-
# parcel-bundler cache (https://parceljs.org/)
81-
.cache
82-
83-
# Next.js build output
84-
.next
85-
86-
# Nuxt.js build / generate output
87-
.nuxt
88-
dist
89-
90-
# Gatsby files
91-
.cache/
92-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
93-
# https://nextjs.org/blog/next-9-1#public-directory-support
94-
# public
95-
96-
# vuepress build output
97-
.vuepress/dist
98-
99-
# Serverless directories
100-
.serverless/
101-
102-
# FuseBox cache
103-
.fusebox/
104-
105-
# DynamoDB Local files
106-
.dynamodb/
107-
108-
# TernJS port file
109-
.tern-port
1+
/.acl
2+
/.eslintcache
3+
/componentsjs-error-state.json
4+
/coverage
5+
/data
6+
/dist
7+
/docs
8+
/node_modules
9+
/test/tmp

.markdownlint-cli2.cjs

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
'use strict';
2+
3+
module.exports = {
4+
ignores: [ 'node_modules/', 'LICENSE.md', '.github/' ],
5+
6+
globs: [ '**/*.md' ],
7+
8+
config: {
9+
// Enable all markdownlint rules
10+
default: true,
11+
12+
// Set list indent level to 4 which mkdocs / Python-Markdown requires
13+
MD007: { indent: 4 },
14+
15+
// Enable line length check but exclude tables and code blocks
16+
MD013: {
17+
line_length: 120,
18+
tables: false,
19+
code_blocks: false,
20+
},
21+
22+
// Allow multiple subheadings with the same content
23+
// across different section (#1 ##A ##B #2 ##A ##B)
24+
MD024: {
25+
siblings_only: true,
26+
},
27+
28+
// Set Ordered list item prefix to "ordered" (use 1. 2. 3. not 1. 1. 1.)
29+
MD029: { style: 'ordered' },
30+
31+
// Allow inline HTML
32+
MD033: false,
33+
},
34+
};

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Needed to overwrite .gitignore, actual files are determined by `files` field in package.json

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

.versionrc.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"types": [
3+
{ "type": "feat", "section": "Features" },
4+
{ "type": "fix", "section": "Fixes" },
5+
{ "type": "chore", "section": "Chores" },
6+
{ "type": "chore(deps)", "section": "Dependency updates" },
7+
{ "type": "docs", "section": "Documentation" },
8+
{ "type": "style", "section": "Styling" },
9+
{ "type": "refactor", "section": "Refactors" },
10+
{ "type": "perf", "section": "Performance" },
11+
{ "type": "test", "section": "Testing" }
12+
],
13+
"header": "<!-- markdownlint-disable MD013 -->\n# Changelog\n\nAll notable changes to this project will be documented in this file.",
14+
"releaseCommitMessageFormat": "chore(release): Release version {{currentTag}} of the npm package"
15+
}

0 commit comments

Comments
 (0)