This commit is contained in:
Morten Olsen
2024-01-11 09:03:14 +01:00
commit 0ac0c918fa
81 changed files with 6979 additions and 0 deletions

16
.eslintrc Normal file
View File

@@ -0,0 +1,16 @@
{
"extends": "@react-native-community",
"rules": {
"react/react-in-jsx-scope": 0,
"prettier/prettier": [
"error",
{
"singleQuote": true
}
]
},
"ignorePatterns": [
"node_modules/",
"dist/"
]
}