Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .babelrc

This file was deleted.

28 changes: 9 additions & 19 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,19 +1,9 @@
# This file is for unifying the coding style for different editors and IDEs.
# More information at http://editorconfig.org

# No .editorconfig files above the root directory
root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 100

[*.{html,hbs,mustache,ejs,js,jsx,rb,scss,xml,svg}]
indent_size = 4

[*.md]
indent_size = 4
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
1 change: 0 additions & 1 deletion .env

This file was deleted.

7 changes: 5 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/coverage/*
/dist/*
build/
dist/
node_modules/
.snapshots/
*.min.js
35 changes: 35 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"standard",
"standard-react",
"plugin:prettier/recommended",
"prettier/standard",
"prettier/react",
"plugin:@typescript-eslint/eslint-recommended"
],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"ecmaFeatures": {
"legacyDecorators": true,
"jsx": true
}
},
"settings": {
"react": {
"version": "16"
}
},
"rules": {
"space-before-function-paren": 0,
"react/prop-types": 0,
"react/jsx-handler-names": 0,
"react/jsx-fragments": 0,
"react/no-unused-prop-types": 0,
"import/export": 0,
"no-unused-vars": 0
}
}
22 changes: 0 additions & 22 deletions .eslintrc.json

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/generate_docs.yml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ jobs:
with:
persist-credentials: false

- name: Test ✅ # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
- name: Install 🔧
run: |
yarn
yarn typecheck
- name: Test ✅ # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
yarn test
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/node_modules
/dist
/coverage
/docs
**/node_modules/
**/dist/
**/coverage/
9 changes: 4 additions & 5 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/coverage
/docs
/src
/.vscode
/types
**/src
**/.vscode
**/example
**/coverage
11 changes: 11 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"singleQuote": true,
"jsxSingleQuote": true,
"semi": false,
"tabWidth": 2,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"trailingComma": "none",
"endOfLine":"auto"
}
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_js
node_js:
- 12
- 10
8 changes: 7 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/dist": false,
"**/out": true,
"**/coverage": false,
".awcache": true
},
"files.exclude": {
Expand All @@ -12,9 +13,14 @@
"**/.DS_Store": true,
"**/node_modules": true,
"**/out": false,
"**/dist": false,
"**/coverage": false,
"tslint-rules/**/*.js": true,
".awcache": true,
".eslintcache": true
},
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll": true
}
}
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Loading