Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(readme): remove readme #5

Open
wants to merge 42 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
98514d1
chore(readme): remove readme
nicobarray Jan 21, 2021
762d9ec
trigger
chabou Jan 21, 2021
e4bc62e
chore(test): add pull_request_review trigger
chabou Jan 21, 2021
8330fe4
chore(test): add review_requested trigger
chabou Jan 21, 2021
85731e6
wip
chabou Jan 22, 2021
f92cbb0
wip
chabou Jan 22, 2021
260754d
wip
chabou Jan 22, 2021
4ad1673
wip
chabou Jan 22, 2021
3a15dec
wip
chabou Jan 22, 2021
1059b40
wip
chabou Jan 22, 2021
7e4dc87
wip
chabou Jan 22, 2021
2467992
wip
chabou Jan 22, 2021
efa15cf
wip
chabou Jan 22, 2021
87d15b9
wip
chabou Jan 23, 2021
c3bb3ee
wip
chabou Jan 23, 2021
2a9032d
wip
chabou Jan 23, 2021
27b7b5f
wip
chabou Jan 23, 2021
30a9485
wip
chabou Jan 23, 2021
64005c7
wip
chabou Jan 23, 2021
83ef3a5
wip
chabou Jan 23, 2021
7747182
wip
chabou Jan 23, 2021
a313c62
wip
chabou Jan 23, 2021
4c32a4d
fix review
chabou Jan 23, 2021
4b118f9
fix review
chabou Jan 23, 2021
3356651
fix review
chabou Jan 23, 2021
1eb75b5
fix review
chabou Jan 23, 2021
b9d1b5d
change after review
chabou Jan 23, 2021
caa61cd
wip
chabou Jan 23, 2021
51b9a12
wip
chabou Jan 23, 2021
2904a6e
wip
chabou Jan 23, 2021
3aea014
wip
chabou Jan 23, 2021
9305db3
Refacto
chabou Jan 24, 2021
ac65689
Change skip condition
chabou Jan 24, 2021
9dac20a
Change skip condition
chabou Jan 24, 2021
77ff70c
Change skip condition
chabou Jan 24, 2021
728ca0a
Change skip condition
chabou Jan 24, 2021
372f69c
Change skip condition
chabou Jan 24, 2021
763c468
Change skip condition
chabou Jan 24, 2021
031acbd
Refacto types
chabou Jan 24, 2021
da5de27
Refacto types
chabou Jan 24, 2021
352c7bc
Remove mergestatus
chabou Jan 24, 2021
1633a80
Remove mergestatus
chabou Jan 24, 2021
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
106 changes: 54 additions & 52 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,55 @@
{
"plugins": ["jest", "@typescript-eslint"],
"extends": ["plugin:github/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/array-type": "error",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-comment": "error",
"camelcase": "off",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}],
"@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/no-inferrable-types": "error",
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/prefer-for-of": "warn",
"@typescript-eslint/prefer-function-type": "warn",
"@typescript-eslint/prefer-includes": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/promise-function-async": "error",
"@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/restrict-plus-operands": "error",
"semi": "off",
"@typescript-eslint/semi": ["error", "never"],
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "error"
},
"env": {
"node": true,
"es6": true
}
}
"plugins": ["@typescript-eslint"],
"extends": ["plugin:github/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-member-accessibility": [
"error",
{"accessibility": "no-public"}
],
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/array-type": "error",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-comment": "error",
"camelcase": "off",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/no-inferrable-types": "error",
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/prefer-for-of": "warn",
"@typescript-eslint/prefer-function-type": "warn",
"@typescript-eslint/prefer-includes": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/promise-function-async": "error",
"@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/restrict-plus-operands": "error",
"semi": "off",
"@typescript-eslint/semi": ["error", "never"],
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "error"
},
"env": {
"node": true,
"es6": true
}
}
16 changes: 14 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
#push:
types:
[
opened,
synchronize,
reopened,
ready_for_review,
review_requested,
review_request_removed,
closed
]
pull_request_review:

jobs:
build: # make sure build/ci work properly
build:
strategy:
max-parallel: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
109 changes: 0 additions & 109 deletions README.md

This file was deleted.

Loading