Skip to content

Commit af7dac7

Browse files
committed
pre-release version
0 parents  commit af7dac7

File tree

2,061 files changed

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

2,061 files changed

+173637
-0
lines changed

.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
trim_trailing_whitespace = true
7+
insert_final_newline = true
8+
9+
[*.md]
10+
insert_final_newline = false
11+
trim_trailing_whitespace = false
12+
13+
[*.{js,jsx,json,ts,tsx,yml}]
14+
indent_size = 4
15+
indent_style = space
16+
17+
[.prettierrc]
18+
indent_size = 4
19+
indent_style = space

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/**/*.js

.eslintrc.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"env": {
3+
"browser": false,
4+
"es6": true,
5+
"node": true
6+
},
7+
"parser": "@typescript-eslint/parser",
8+
"parserOptions": {
9+
"project": "./tsconfig.json",
10+
"sourceType": "module"
11+
},
12+
"plugins": [
13+
"@typescript-eslint",
14+
"jest",
15+
"prettier",
16+
"unused-imports"
17+
],
18+
"extends": [
19+
"eslint:recommended",
20+
"plugin:@typescript-eslint/recommended",
21+
"plugin:jest/recommended",
22+
"plugin:prettier/recommended"
23+
],
24+
"rules": {
25+
"unused-imports/no-unused-imports": 2,
26+
"unused-imports/no-unused-vars": "off",
27+
"@typescript-eslint/explicit-function-return-type": "off",
28+
"@typescript-eslint/camelcase": "off",
29+
"no-prototype-builtins": "off",
30+
"@typescript-eslint/explicit-module-boundary-types": "off",
31+
"@typescript-eslint/no-explicit-any": "off",
32+
"@typescript-eslint/no-non-null-assertion": "off",
33+
"@typescript-eslint/no-use-before-define": "error"
34+
}
35+
}

.gitignore

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

.graphqlconfig

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "GQL API Internal and UI Remote",
3+
"projects": {
4+
"ui": {
5+
"includes": ["src/gql/**"],
6+
"schemaPath": "remote-schema.graphql",
7+
"extensions": {
8+
"endpoints": {
9+
"Remote GraphQL Endpoint": {
10+
"url": "http://localhost:8082/graphql",
11+
"headers": {
12+
"user-agent": "JS GraphQL"
13+
},
14+
"introspect": true
15+
}
16+
}
17+
}
18+
},
19+
"api": {
20+
"includes": ["src/**"]
21+
}
22+
}
23+
}

.prettierrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"printWidth": 100,
3+
"singleQuote": true,
4+
"trailingComma": "all",
5+
"overrides": [
6+
{
7+
"files": "*.ts",
8+
"options": {
9+
"parser": "typescript"
10+
}
11+
}
12+
]
13+
}

0 commit comments

Comments
 (0)