Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
chore(build): prettier, package-lock, devDep updates
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Aug 11, 2020
1 parent 42a0558 commit a35987c
Show file tree
Hide file tree
Showing 11 changed files with 8,238 additions and 50 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dist/
www/build
www/

*~
*.sw[mnpcod]
Expand Down
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

13 changes: 13 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"arrowParens": "avoid",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"quoteProps": "consistent",
"printWidth": 180,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
7 changes: 2 additions & 5 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@ module.exports = {
// warnOnly: true,
},
tsConfig: {
types: [
"node",
"jest",
],
types: ['node', 'jest'],
},
},
},
testRegex: 'test/.*\.(ts|tsx)',
testRegex: 'test/.*.(ts|tsx)',
testMatch: null,
};
Loading

0 comments on commit a35987c

Please sign in to comment.