Skip to content

Commit

Permalink
feat: initial
Browse files Browse the repository at this point in the history
  • Loading branch information
raveclassic committed Apr 23, 2020
0 parents commit 51eac97
Show file tree
Hide file tree
Showing 22 changed files with 6,107 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{js,ts,jsx,tsx,html,css,scss,sass}]
indent_style = tab
indent_size = 4

[*.{json,yaml}]
indent_size = 2
indent_style = space

[*.md]
max_line_length = off
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/.idea
/node_modules
*.log
/lib
/coverage
19 changes: 19 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"bracketSpacing": true,
"jsxBracketSameLine": true,
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": "*.json",
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
}
17 changes: 17 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
collectCoverage: false,
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100
}
},
testPathIgnorePatterns: [
'node_modules',
'perf'
]
};
Loading

0 comments on commit 51eac97

Please sign in to comment.