Skip to content

Commit 36b261b

Browse files
Init
1 parent 625f35b commit 36b261b

File tree

236 files changed

+9784
-2
lines changed

Some content is hidden

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

236 files changed

+9784
-2
lines changed

.browserslistrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[production]
2+
> 0.5%
3+
not dead
4+
5+
[development]
6+
last 1 chrome version
7+
last 1 firefox version
8+
last 1 safari version

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
max_line_length = 140
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
max_line_length = off
14+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
flow-libs
2+
flow-typed

.eslintrc.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"extends": [
3+
"airbnb",
4+
"prettier",
5+
"plugin:prettier/recommended"
6+
],
7+
"plugins": [
8+
"import",
9+
"prettier"
10+
],
11+
"env": {
12+
"browser": true,
13+
"es6": true
14+
},
15+
"globals": {
16+
"Atomics": "readonly",
17+
"SharedArrayBuffer": "readonly"
18+
},
19+
"rules": {
20+
"no-bitwise": "off",
21+
"import/extensions": [
22+
"error",
23+
"ignorePackages",
24+
{
25+
"js": "never"
26+
}
27+
],
28+
"import/no-unresolved": "error",
29+
"prettier/prettier": [
30+
"error"
31+
]
32+
},
33+
"settings": {
34+
"import/extensions": [
35+
".js"
36+
],
37+
"import/parsers": {},
38+
"import/resolver": {
39+
"node": {
40+
"extensions": [],
41+
"moduleDirectory": [
42+
"node_modules",
43+
"src"
44+
]
45+
}
46+
}
47+
}
48+
}

.flowconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[ignore]
2+
.*/node_modules/*
3+
4+
[include]
5+
src/*
6+
7+
[libs]
8+
9+
[lints]
10+
all=warn
11+
12+
[options]
13+
module.file_ext=.js
14+
module.file_ext=.json
15+
module.file_ext=.ts
16+
module.file_ext=.scss
17+
18+
[strict]

.gitattributes

Lines changed: 182 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,182 @@
1+
# https://html5boilerplate.com
2+
3+
## AUTO-DETECT
4+
* text=auto
5+
6+
## SOURCE CODE
7+
*.bat text eol=crlf
8+
*.coffee text
9+
*.css text
10+
*.htm text
11+
*.html text
12+
*.inc text
13+
*.ini text
14+
*.js text
15+
*.json text
16+
*.jsx text
17+
*.less text
18+
*.od text
19+
*.onlydata text
20+
*.php text
21+
*.pl text
22+
*.py text
23+
*.rb text
24+
*.sass text
25+
*.scm text
26+
*.scss text
27+
*.sh text eol=lf
28+
*.sql text
29+
*.styl text
30+
*.tag text
31+
*.ts text
32+
*.tsx text
33+
*.xml text
34+
*.xhtml text
35+
36+
## DOCKER
37+
*.dockerignore text
38+
Dockerfile text
39+
40+
## DOCUMENTATION
41+
*.markdown text
42+
*.md text
43+
*.mdwn text
44+
*.mdown text
45+
*.mkd text
46+
*.mkdn text
47+
*.mdtxt text
48+
*.mdtext text
49+
*.txt text
50+
AUTHORS text
51+
CHANGELOG text
52+
CHANGES text
53+
CONTRIBUTING text
54+
COPYING text
55+
copyright text
56+
*COPYRIGHT* text
57+
INSTALL text
58+
license text
59+
LICENSE text
60+
NEWS text
61+
readme text
62+
*README* text
63+
TODO text
64+
65+
## TEMPLATES
66+
*.dot text
67+
*.ejs text
68+
*.haml text
69+
*.handlebars text
70+
*.hbs text
71+
*.hbt text
72+
*.jade text
73+
*.latte text
74+
*.mustache text
75+
*.njk text
76+
*.phtml text
77+
*.tmpl text
78+
*.tpl text
79+
*.twig text
80+
81+
## LINTERS
82+
.babelrc text
83+
.csslintrc text
84+
.eslintrc text
85+
.htmlhintrc text
86+
.jscsrc text
87+
.jshintrc text
88+
.jshintignore text
89+
.prettierrc text
90+
.stylelintrc text
91+
92+
## CONFIGS
93+
*.bowerrc text
94+
*.cnf text
95+
*.conf text
96+
*.config text
97+
.browserslistrc text
98+
.editorconfig text
99+
.gitattributes text
100+
.gitconfig text
101+
.gitignore text
102+
.htaccess text
103+
*.npmignore text
104+
*.yaml text
105+
*.yml text
106+
browserslist text
107+
Makefile text
108+
makefile text
109+
110+
## HEROKU
111+
Procfile text
112+
.slugignore text
113+
114+
## GRAPHICS
115+
*.ai binary
116+
*.bmp binary
117+
*.eps binary
118+
*.gif binary
119+
*.ico binary
120+
*.jng binary
121+
*.jp2 binary
122+
*.jpg binary
123+
*.jpeg binary
124+
*.jpx binary
125+
*.jxr binary
126+
*.pdf binary
127+
*.png binary
128+
*.psb binary
129+
*.psd binary
130+
*.svg text
131+
*.svgz binary
132+
*.tif binary
133+
*.tiff binary
134+
*.wbmp binary
135+
*.webp binary
136+
137+
## AUDIO
138+
*.kar binary
139+
*.m4a binary
140+
*.mid binary
141+
*.midi binary
142+
*.mp3 binary
143+
*.ogg binary
144+
*.ra binary
145+
146+
## VIDEO
147+
*.3gpp binary
148+
*.3gp binary
149+
*.as binary
150+
*.asf binary
151+
*.asx binary
152+
*.fla binary
153+
*.flv binary
154+
*.m4v binary
155+
*.mng binary
156+
*.mov binary
157+
*.mp4 binary
158+
*.mpeg binary
159+
*.mpg binary
160+
*.ogv binary
161+
*.swc binary
162+
*.swf binary
163+
*.webm binary
164+
165+
## ARCHIVES
166+
*.7z binary
167+
*.gz binary
168+
*.jar binary
169+
*.rar binary
170+
*.tar binary
171+
*.zip binary
172+
173+
## FONTS
174+
*.ttf binary
175+
*.eot binary
176+
*.otf binary
177+
*.woff binary
178+
*.woff2 binary
179+
180+
## EXECUTABLES
181+
*.exe binary
182+
*.pyc binary

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Compiled output
2+
/build
3+
/dist
4+
/documentation
5+
/out-tsc
6+
/tmp
7+
8+
# Composer
9+
vendor
10+
composer.lock
11+
12+
# Dependencies
13+
/node_modules
14+
package-lock.json
15+
16+
# IDEs + Editors
17+
*.launch
18+
*.sublime-workspace
19+
/.idea
20+
.c9
21+
.classpath
22+
.history
23+
.project
24+
.settings
25+
26+
# IDE - VSCode
27+
.vscode/*
28+
!.vscode/extensions.json
29+
!.vscode/launch.json
30+
!.vscode/settings.json
31+
!.vscode/tasks.json
32+
33+
# Misc
34+
/.sass-cache
35+
/connect.lock
36+
/coverage
37+
/libpeerconnection.log
38+
/typings
39+
npm-debug.log
40+
php_errorlog
41+
testem.log
42+
yarn-error.log
43+
44+
# System files
45+
*/*.lnk
46+
*desktop.ini
47+
.DS_Store
48+
Thumbs.db

.htmlhintrc.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"alt-require": true,
3+
"attr-lowercase": true,
4+
"attr-no-duplication": true,
5+
"attr-unsafe-chars": true,
6+
"attr-value-double-quotes": true,
7+
"attr-value-not-empty": false,
8+
"doctype-first": false,
9+
"doctype-html5": true,
10+
"href-abs-or-rel": false,
11+
"id-class-ad-disabled": false,
12+
"id-class-value": "dash",
13+
"id-unique": true,
14+
"inline-script-disabled": false,
15+
"inline-style-disabled": false,
16+
"space-tab-mixed-disabled": "space",
17+
"spec-char-escape": true,
18+
"src-not-empty": true,
19+
"style-disabled": false,
20+
"tag-pair": true,
21+
"tag-self-close": false,
22+
"tagname-lowercase": true,
23+
"title-require": true
24+
}

.markdownlint.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"first-line-heading": false,
3+
"line-length": false,
4+
"no-inline-html": false
5+
}

.prettierrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"printWidth": 140,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"singleQuote": true,
6+
"semi": true,
7+
"trailingComma": "all"
8+
}

0 commit comments

Comments
 (0)