Skip to content

Commit 93355ff

Browse files
committed
Initial commit
0 parents  commit 93355ff

File tree

231 files changed

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

231 files changed

+41141
-0
lines changed

.cfignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.DS_STORE
2+
3+
# Ignore app settings
4+
.idea
5+
.eslintrc.yml
6+
.gitignore
7+
8+
# Ignore app files
9+
gulp.config.js
10+
gulpfile.js
11+
readme.md
12+
webpack.config.js
13+
14+
# Ignore node_modules
15+
node_modules
16+
17+
# Ignore src
18+
src/assets
19+
src/index.js
20+
src/app/toolkit/.backup
21+
src/app/toolkit/.tmp

.dockerignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules
2+
reactium_modules
3+
npm-debug.log
4+
Dockerfile*
5+
docker-compose*
6+
.dockerignore
7+
.git
8+
.gitignore
9+
.vscode

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
# Unix-style newlines with a newline ending every file
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
indent_style = space
10+
indent_size = 4
11+
12+
[*.yml]
13+
indent_style = space
14+
indent_size = 2
15+
16+
[*.json]
17+
indent_style = space
18+
indent_size = 2

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
src/assets/vendor
2+
umd.js

.eslintrc

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"env": {
3+
"es6": true
4+
},
5+
"parser": "babel-eslint",
6+
"parserOptions": {
7+
"ecmaFeatures": {
8+
"jsx": true
9+
},
10+
"ecmaVersion": 2018,
11+
"sourceType": "module"
12+
},
13+
"plugins": ["react", "react-hooks"],
14+
"rules": {
15+
"indent": "off",
16+
"linebreak-style": ["warn", "unix"],
17+
"quotes": ["warn", "single"],
18+
"semi": ["warn", "always"],
19+
"react/jsx-key": "warn",
20+
"react/jsx-no-duplicate-props": "error",
21+
"react/jsx-no-undef": 1,
22+
"react/jsx-uses-react": 1,
23+
"react/jsx-uses-vars": 1,
24+
"react/no-this-in-sfc": "error",
25+
"react/require-render-return": "error",
26+
"no-unexpected-multiline": "off",
27+
"no-unreachable": "warn",
28+
"no-unused-vars": "warn"
29+
}
30+
}

.flowconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[ignore]
2+
<PROJECT_ROOT>/node_modules
3+
<PROJECT_ROOT>/reactium_modules
4+
<PROJECT_ROOT>/public
5+
<PROJECT_ROOT>/dist
6+
<PROJECT_ROOT>/.core
7+
<PROJECT_ROOT>/.cli
8+
.*umd\.js
9+
.*sw\.js
10+
11+
[include]
12+
src/
13+
14+
[libs]
15+
16+
[lints]
17+
18+
[options]
19+
20+
[strict]

.gettext.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"js": {
3+
"parsers": [
4+
{
5+
"expression": "gettext",
6+
"arguments": {
7+
"text": 0
8+
}
9+
},
10+
{
11+
"expression": "__",
12+
"arguments": {
13+
"text": 0
14+
}
15+
},
16+
{
17+
"expression": "ngettext",
18+
"arguments": {
19+
"text": 0,
20+
"textPlural": 1
21+
}
22+
},
23+
{
24+
"expression": "_n",
25+
"arguments": {
26+
"text": 0,
27+
"textPlural": 1
28+
}
29+
},
30+
{
31+
"expression": "pgettext",
32+
"arguments": {
33+
"context": 0,
34+
"text": 1
35+
}
36+
}
37+
],
38+
"glob": {
39+
"pattern": "src/app/**/*.js"
40+
}
41+
},
42+
"headers": {
43+
"Language": "en_US"
44+
},
45+
"output": "src/reactium-translations/template.pot"
46+
}

.gitignore

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (http://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
reactium_modules/
39+
40+
# Typescript v1 declaration files
41+
typings/
42+
43+
# Optional npm cache directory
44+
.npm
45+
46+
# Optional eslint cache
47+
.eslintcache
48+
49+
# Optional REPL history
50+
.node_repl_history
51+
52+
# Output of 'npm pack'
53+
*.tgz
54+
55+
# Yarn Integrity file
56+
.yarn-integrity
57+
58+
# dotenv environment variables file
59+
.env
60+
61+
# Output of build
62+
dist
63+
public
64+
build
65+
lib
66+
67+
# OS generated files
68+
.DS_Store
69+
.Spotlight-V100
70+
.Trashes
71+
ehthumbs.db
72+
Thumbs.db
73+
74+
# Toolkit hidden directories
75+
.backup
76+
.tmp
77+
78+
# Backup directory
79+
.BACKUP/
80+
81+
# CLI
82+
.cli-cache
83+
84+
# Manifest
85+
src/domains.js
86+
src/manifest.js
87+
src/externals-manifest.js
88+
src/app/server/webpack-manifest.json
89+
90+
# Translation .mo
91+
*.mo
92+
93+
# Editor configs
94+
*.code-workspace
95+
*.vscode

.huskyrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"husky": {
3+
"hooks": {
4+
"pre-commit": "lint-staged"
5+
}
6+
}
7+
}

.npmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
audit = false
2+
fund = false
3+
loglevel = error

0 commit comments

Comments
 (0)