Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 8ce73ed

Browse files
initial commit
1 parent 704ef23 commit 8ce73ed

File tree

17 files changed

+16039
-0
lines changed

17 files changed

+16039
-0
lines changed

‎.babelrc‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"presets": ["env", "react", "flow"],
3+
"plugins": ["transform-object-rest-spread", "transform-class-properties"]
4+
}

‎.editorconfig‎

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

‎.eslintrc.json‎

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"commonjs": true,
6+
"node": true,
7+
"jest": true,
8+
"mocha": true
9+
},
10+
"globals": {
11+
"__DEV__": true
12+
},
13+
"extends": [
14+
"wiremore",
15+
"wiremore/react",
16+
"plugin:react/recommended",
17+
"prettier",
18+
"prettier/react",
19+
"plugin:flowtype/recommended"
20+
],
21+
"settings": {
22+
"flowtype": {
23+
"onlyFilesWithFlowAnnotation": true
24+
}
25+
},
26+
"plugins": ["prettier", "flowtype"],
27+
"rules": {
28+
"import/named": 0,
29+
"import/no-unassigned-import": 0,
30+
"import/no-named-as-default-member": 0,
31+
"prettier/prettier": "error"
32+
}
33+
}

‎.prettierignore‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package.json

‎.prettierrc‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
printWidth: 100
2+
singleQuote: true
3+
tabWidth: 4
4+
trailingComma: all
5+
semi: true
6+
arrowParens: always

‎README‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# react-checkbox-context
2+
3+
Readme coming soon.

‎lib/index.js‎

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /