Skip to content

Commit

Permalink
Added typescript support
Browse files Browse the repository at this point in the history
Added prettier
Dependencies are updated to latest versions
  • Loading branch information
glook committed Jan 21, 2020
1 parent 0c3e2a0 commit 598e0d8
Show file tree
Hide file tree
Showing 34 changed files with 443 additions and 12,585 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
dist
node_modules
package-lock.json
38 changes: 38 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"useTabs": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all",
"semi": true,
"arrowParens": "always",
"bracketSpacing": false,
"endOfLine": "lf",
"overrides": [
{
"files": ["*.ts"],
"options": {
"parser": "typescript"
}
},
{
"files": ["*.tsx"],
"options": {
"parser": "typescript",
"jsxBracketSameLine": false,
"jsxSingleQuote": false
}
},
{
"files": ["*.scss"],
"options": {
"parser": "scss"
}
},
{
"files": ["*.json"],
"options": {
"parser": "json"
}
}
]
}
Loading

0 comments on commit 598e0d8

Please sign in to comment.