893fb1cb9e
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.
13 lines
310 B
JSON
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": []
|
|
}
|