Skip to content
This repository was archived by the owner on Sep 22, 2020. It is now read-only.

Commit fed798a

Browse files
authored
1.0.0 (#8)
The release of 1.0.0 version.
1 parent 1959da1 commit fed798a

File tree

92 files changed

+3277
-1417
lines changed

Some content is hidden

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

92 files changed

+3277
-1417
lines changed

.editorconfig

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
2-
3-
root = true
4-
5-
[*]
6-
indent_style = space
7-
indent_size = 4
8-
end_of_line = crlf
9-
charset = utf-8
10-
trim_trailing_whitespace = true
11-
insert_final_newline = true
12-
13-
[*.{pug,scss}]
14-
indent_size = 2
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
end_of_line = crlf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.{pug,scss,md}]
14+
indent_size = 2

.prettierrc.yaml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
# Basic
2-
# Some long strings (file path, e.g.) just do not fit in a line with 80 width.
3-
# And if break them to a width 80 - it just looks ugly.
4-
# However, it is still better to follow the width 80 standard.
5-
printWidth: 120
6-
tabWidth: 4
7-
useTabs: false
8-
singleQuote: false
9-
semi: true
10-
bracketSpacing: false
11-
arrowParens: "always"
12-
13-
# Extra
14-
trailingComma: "none"
15-
jsxBracketSameLine: false
16-
parser: "babylon"
17-
requirePragma: false
18-
insertPragma: false
19-
proseWrap: "preserve"
20-
21-
overrides:
22-
- files: ["*.js"]
23-
options:
24-
singleQuote: true
25-
26-
- files: ["*.pug", "*.scss"]
27-
options:
28-
tabWidth: 2
1+
# Basic
2+
# Some long strings (file path, e.g.) just do not fit in a line with 80 width.
3+
# And if break them to a width 80 - it just looks ugly.
4+
# However, it is still better to follow the width 80 standard.
5+
printWidth: 120
6+
tabWidth: 4
7+
useTabs: false
8+
singleQuote: false
9+
semi: true
10+
bracketSpacing: false
11+
arrowParens: "always"
12+
13+
# Extra
14+
trailingComma: "none"
15+
jsxBracketSameLine: false
16+
parser: "babylon"
17+
requirePragma: false
18+
insertPragma: false
19+
proseWrap: "preserve"
20+
21+
overrides:
22+
- files: ["*.js"]
23+
options:
24+
singleQuote: true
25+
26+
- files: ["*.pug", "*.scss", "*.md"]
27+
options:
28+
tabWidth: 2

0 commit comments

Comments
 (0)