Skip to content

Commit

Permalink
chore: merge pull request #14 from mikerourke/version-2
Browse files Browse the repository at this point in the history
🎉 Version 2
  • Loading branch information
mikerourke committed Feb 3, 2020
2 parents 8715b45 + 708960a commit 108320f
Show file tree
Hide file tree
Showing 186 changed files with 23,862 additions and 14,628 deletions.
22 changes: 0 additions & 22 deletions .babelrc

This file was deleted.

3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,3 @@ charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 0 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ TRELLO_API_KEY=
TRELLO_AUTH_TOKEN=
TRELLO_MEMBER_USERNAME=
TRELLO_MEMBER_ID=
TEST_DELAY=2000
93 changes: 93 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"plugins": ["@typescript-eslint", "unicorn", "import"],
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts"]
}
}
},
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"extraFileExtensions": [".ts"]
},
"rules": {
"curly": ["error", "all"],
"indent": "off",
"no-unused-vars": "off",
"@typescript-eslint/array-type": ["error", { "default": "array" }],
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/explicit-function-return-type": [
"error",
{
"allowExpressions": true,
"allowTypedFunctionExpressions": true
}
],
"@typescript-eslint/indent": "off",
"@typescript-eslint/member-ordering": "error",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"ignoreRestSiblings": true,
"argsIgnorePattern": "props|args|_",
"args": "after-used"
}
],
"@typescript-eslint/no-use-before-define": [
"error",
{ "functions": false, "classes": false }
],
"@typescript-eslint/no-var-requires": "off",
"import/no-default-export": "error",
"import/order": [
"error",
{
"alphabetize": { "order": "ignore" },
"groups": ["builtin", "external", ["internal", "parent", "sibling"]],
"newlines-between": "never"
}
],
"unicorn/catch-error-name": [
"error",
{
"name": "err"
}
],
"unicorn/explicit-length-check": [
"error",
{
"non-zero": "not-equal"
}
],
"unicorn/new-for-builtins": "error",
"unicorn/no-new-buffer": "error",
"unicorn/prefer-add-event-listener": "error",
"unicorn/throw-new-error": "error"
},
"overrides": [
{
"files": ["src/**/*.test.ts"],
"rules": {
"no-console": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}
]
}
13 changes: 0 additions & 13 deletions .flowconfig

This file was deleted.

8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ dictionaries

# Other
output/
docs/
lib/
tests/results/
coverage/
.nyc_output/

.env
ids.json
resources.json
build/
try.js
umd/
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

358 changes: 0 additions & 358 deletions COVERAGE.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Mike Rourke
Copyright (c) 2020 Mike Rourke

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit 108320f

Please sign in to comment.