signal-desktop/tslint.json
Scott Nonnenberg 893fb1cb9e
Introduce React/TypeScript/TSLint into app for new UI components
npm run transpile
  Works on files under js/react/
  Outputs files right next to the .tsx file

This is part of our `grunt dev` task, as well as the default grunt task,
which does everything else necessary to get a raw git checkout ready to
run.
2018-04-04 16:08:27 -07:00

13 lines
310 B
JSON

{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react"
],
"jsRules": {},
"rules": {
"quotemark": [true, "single", "jsx-double", "avoid-template", "avoid-escape"],
"no-consecutive-blank-lines": [true, 2]
},
"rulesDirectory": []
}