Skip to content

Commit 0848eb3

Browse files
committed
feat: init
0 parents  commit 0848eb3

19 files changed

+4682
-0
lines changed

.all-contributorsrc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"projectName": "find-css-classes",
3+
"projectOwner": "akameco",
4+
"files": [
5+
"readme.md"
6+
],
7+
"imageSize": 100,
8+
"commit": false,
9+
"contributors": [
10+
{
11+
"login": "akameco",
12+
"name": "akameco",
13+
"avatar_url": "https://avatars2.githubusercontent.com/u/4002137?v=4",
14+
"profile": "http://akameco.github.io",
15+
"contributions": [
16+
"code",
17+
"doc",
18+
"test",
19+
"infra"
20+
]
21+
}
22+
]
23+
}

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.eslintignore

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

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["precure/oss"]
3+
}

.flowconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[ignore]
2+
3+
[include]
4+
5+
[libs]
6+
7+
[lints]
8+
9+
[options]
10+
11+
[strict]

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text=auto
2+
*.js text eol=lf
3+
*.lock binary
4+
package-lock.json binary

.github/ISSUE_TEMPLATE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!--
2+
Thanks for your interest in the project.
3+
I appreciate bugs filed and PRs submitted!
4+
I'll probably ask you to submit the fix (after giving some direction).
5+
6+
English/日本語(日本語で入力して大丈夫です。日本語の方が迅速です)
7+
-->
8+
9+
- version:
10+
- `node` version:
11+
- `npm` (or `yarn`) version:
12+
13+
**Do you want to request a *feature* or report a *bug*?:**
14+
15+
**What is the current behavior?:**
16+
17+
**What is the expected behavior?:**
18+
19+
**Suggested solution:**

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!--
2+
Thanks for your interest in the project. I appreciate bugs filed and PRs submitted!
3+
English/日本語(日本語で入力して大丈夫です。日本語の方が迅速です)
4+
-->
5+
6+
<!-- What changes are being made? (What feature/bug is being fixed here?) / 何が変更されていますか?-->
7+
**What**:
8+
9+
10+
<!-- Why are these changes necessary? / なぜその変更をする必要がありましたか?-->
11+
**Why**:
12+
13+
14+
<!-- How were these changes implemented? / これらの変更をどのように実装しましたか?-->
15+
**How**:
16+
17+
18+
**Checklist**:
19+
<!-- add "N/A" to the end of each line that's irrelevant to your changes to check an item, place an "x" in the box like so: "- [x] Documentation" -->
20+
21+
* [ ] Documentation
22+
* [ ] Tests
23+
* [ ] Ready to be merged <!-- In your opinion, is this ready to be merged as soon as it's reviewed? -->
24+
* [ ] Added myself to contributors table <!-- this is optional, see the contributing guidelines for instructions -->
25+
26+
<!-- feel free to add additional comments. -->

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
coverage

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
flow-typed
2+
lib
3+
coverage
4+
.github
5+
package.json

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
semi: false
2+
singleQuote: true
3+
trailingComma: es5

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: node_js
2+
node_js:
3+
- '8'
4+
- '6'
5+
6+
cache:
7+
yarn: true
8+
directories:
9+
- ".eslintcache"
10+
- "node_modules"
11+
12+
notifications:
13+
email: false
14+
15+
script:
16+
- yarn run test:ci

0 commit comments

Comments
 (0)