First commit

This commit is contained in:
Daniel Ledda
2020-06-23 23:45:44 +02:00
commit 2381f43d38
28 changed files with 8385 additions and 0 deletions

32
tslint.json Normal file
View File

@@ -0,0 +1,32 @@
{
"defaultSeverity": "error",
"extends": [
"tslint-react"
],
"jsRules": {
},
"rules": {
"jsx-no-multiline-js": false,
"member-access": false,
"prefer-for-of": true,
"prefer-const": true,
"prefer-readonly": true,
"typedef": [
true,
"call-signature",
"property-declaration"
],
"ordered-imports": false,
"quotemark": false,
"no-console": false,
"jsx-no-lambda": false
},
"rulesDirectory": [
],
"linterOptions": {
"exclude": [
"build/**/*.js",
"node_modules/**/*.ts"
]
}
}