Skip to content

Commit

Permalink
web: ts - tslint single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvdutt committed Apr 16, 2018
1 parent a0edcd5 commit 28ded32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"scripts": {
"dev:web": "concurrently --kill-others -n \"CORE\",\"WEB\",\"MAPS\", -c \"cyan\",\"yellow\",\"green\", \"npm start --prefix packages/reactivecore\" \"npm run watch --prefix packages/web\" \"npm run watch --prefix packages/maps\"",
"lint": "eslint .",
"lint:ts": "tslint -c tslint.json 'packages/web/src/**/*.ts'",
"lint:ts": "tslint -c tslint.json 'packages/web/**/**/*.ts'",
"lint:ts-fix": "tslint -c tslint.json --fix 'packages/web/**/**/*.ts'",
"precommit": "lint-staged",
"deploy-site": "scripts/deploy-site.sh",
"native:publish-stories": "cd packages/native/examples/datasearch/ && exp publish && cd .. && cd datepicker/ && exp publish && cd .. && cd daterange/ && exp publish && cd .. && cd multidropdownlist/ && exp publish && cd .. && cd multidropdownrange/ && exp publish && cd .. && cd singledropdownlist/ && exp publish && cd .. && cd singledropdownrange/ && exp publish && cd .. && cd textfield/ && exp publish && cd ../../../../"
Expand Down
3 changes: 2 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"rules": {
"interface-name": false,
"class-name": false,
"indent": [true, "tabs"]
"indent": [true, "tabs"],
"quotemark": [true, "single", "jsx-double"]
},
"rulesDirectory": []
}

0 comments on commit 28ded32

Please sign in to comment.