Files
devhub/tslint.json
Bruno Lemos fae0152226 Experiment migrating all Animated to react-spring
Not good. Super slow because there is too many animated components, need to optimize that.

Lots of warnings on console like this: [Violation] 'requestAnimationFrame' handler took 1296ms

 #68
2019-01-12 05:59:59 -02:00

37 lines
1017 B
JSON

{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-react", "tslint-config-airbnb", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"curly": false,
"function-name": false,
"import-name": false,
"interface-name": false,
"jsx-boolean-value": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"member-access": false,
"no-console": [true, "debug", "dir", "log", "trace", "warn"],
"no-empty-interface": false,
"no-namespace": false,
"no-reference": false,
"no-unused-variable": true,
"object-literal-sort-keys": false,
"object-shorthand-properties-first": false,
"prefer-array-literal": false,
"semicolon": false,
"strict-boolean-expressions": false,
"ter-arrow-parens": false,
"ter-indent": false,
"variable-name": [
true,
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords",
"check-format"
],
"quotemark": false
},
"rulesDirectory": []
}