Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit ae85b37

Browse files
committed
Add linting with eslint and prettier
1 parent 86d49bc commit ae85b37

File tree

5 files changed

+1604
-0
lines changed

5 files changed

+1604
-0
lines changed

.eslintrc.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"parser": "babel-eslint",
3+
"extends": ["plugin:prettier/recommended"],
4+
"plugins": ["react", "react-native"],
5+
"env": {
6+
"node": true
7+
}
8+
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules
2+
npm-debug.log*

.prettierrc.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true
4+
}

0 commit comments

Comments
 (0)