Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-veit committed Nov 21, 2023
1 parent fe0cece commit 9f80c16
Show file tree
Hide file tree
Showing 21 changed files with 23,528 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"presets": [
["env", {
"modules": false
}],
"react"
],
"plugins": ["transform-object-rest-spread"]
}
20 changes: 20 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]

# Change these settings to your own preference
indent_style = space
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
28 changes: 28 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"airbnb/base",
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {},
"ecmaVersion": 6
},
"plugins": [],
"rules": {
"class-methods-use-this": 0,
"no-bitwise": 0,
"no-plusplus": 0,
"no-restriced-syntax": 0,
"no-mixed-operators": ["error", { "allowSamePrecedence": true }],
"no-multi-spaces": ["error", { "ignoreEOLComments": true }],
"no-param-reassign": ["error", { "props": false }],
"no-underscore-dangle": 0,
"no-restricted-syntax": 0,
"function-paren-newline": ["error", "consistent"]
}
}
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
test_html
*.un~
*.swp
*.swo
node_modules
scripts/*.vcf
scripts/*.gz
scripts/*.tbi
scripts/*.txt
scripts/*.bed
scripts/*.bw
dist
es
*.zip
*.log
*.DS_cache
*.DS_Store
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
*.zip
*.log
*.DS_cache
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all",
}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

Unreleased
Loading

0 comments on commit 9f80c16

Please sign in to comment.