Skip to content

Commit ad06984

Browse files
committed
Issue #3 chore : Add .prettierrc & .npmignore
1 parent fe1b0a1 commit ad06984

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.npmignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules
2+
yarn-error.log
3+
npm-debug.log
4+
npm-debug.log.*
5+
yarn-error.log
6+
yarn.lock
7+
.DS_Store
8+
.github
9+
.storybook
10+
.npmignore
11+
tsconfig.json
12+
.prettierrc
13+
rollup.config.js

.prettierrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"singleQuote": true,
3+
"semi": true,
4+
"useTabs": false,
5+
"tabWidth": 2,
6+
"trailingComma": "all",
7+
"printWidth": 80,
8+
"arrowParens": "always",
9+
"endOfLine": "lf"
10+
}

0 commit comments

Comments
 (0)