Skip to content

Commit ac4db99

Browse files
committed
Initial Commit
0 parents  commit ac4db99

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

.editorconfig

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

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.DS_Store
2+
*.log
3+
*.map
4+
5+
node_modules
6+
package-lock.json
7+
yarn.lock

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "react-tv-navigation",
3+
"version": "0.0.1",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/react-tv/react-tv-navigation.git"
12+
},
13+
"keywords": [],
14+
"author": "Raphael Amorim <[email protected]>",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/react-tv/react-tv-navigation/issues"
18+
},
19+
"homepage": "https://github.com/react-tv/react-tv-navigation#readme"
20+
}

0 commit comments

Comments
 (0)