Skip to content

Commit

Permalink
Add prettier configuration and update prettierignore
Browse files Browse the repository at this point in the history
Added the initial commit for .prettierrc.json
Updated the directories that prettier should ignore

Signed-off-by: Froilan Irizarry Rivera <[email protected]>
  • Loading branch information
froi committed May 11, 2020
1 parent c32fcc5 commit 59ee40d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.csv
dist/
lib/
node_modules/
11 changes: 11 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"parser": "typescript"
}

0 comments on commit 59ee40d

Please sign in to comment.