First commit

This commit is contained in:
Daniel Ledda
2020-05-10 15:29:31 +02:00
commit 7cb8a03c24
48 changed files with 9990 additions and 0 deletions

33
tslint.json Executable file
View File

@@ -0,0 +1,33 @@
{
"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",
"config/**/*.js",
"node_modules/**/*.ts"
]
}
}