thunderhub/tslint.json
Anthony Potdevin aa60d618f9
Feat/nextjs (#25)
* feat: initial nextjs commit

* chore: general card styles changes

* chore: add storybook

* chore: small changes and fixes

* fix: trading filter encoding

* fix: add link to node

* chore: set to correct version
2020-04-12 18:27:01 +02:00

37 lines
1 KiB
JSON

{
"extends": ["tslint-config-airbnb", "tslint-react-hooks"],
"rules": {
"no-conditional-assignment": true,
"no-unbound-method": true,
"no-sparse-arrays": true,
"restrict-plus-operands": true,
"no-invalid-template-strings": true,
"no-boolean-literal-compare": true,
"no-console": true,
"object-shorthand-properties-first": false,
"ter-arrow-parens": [true, "as-needed"],
"trailing-comma": false,
"indent": [true, "spaces", 4],
"import-name": false,
"align": false,
"function-name": [
true,
{
"function-regex": "^[a-zA-Z$][\\w\\d]+$",
"method-regex": "^[a-z$][\\w\\d]+$",
"private-method-regex": "^[a-z$][\\w\\d]+$",
"protected-method-regex": "^[a-z$][\\w\\d]+$",
"static-method-regex": "^[a-z$][\\w\\d]+$"
}
],
"variable-name": {
"options": [
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"react-hooks-nesting": true
}
}