Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Merge colibri2 in colibri
Browse files Browse the repository at this point in the history
  • Loading branch information
qarlosalberto committed Jan 11, 2023
1 parent 6571b1c commit 9761a62
Show file tree
Hide file tree
Showing 742 changed files with 37,948 additions and 39,630 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
build/
src/formatter/bin
tmp/
48 changes: 25 additions & 23 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"jsx": true,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"extends": "eslint:recommended",
"rules": {
"no-console": "warn",
"no-eval": "error",
"semi": "warn",
"eqeqeq": "warn",
"max-len": ["warn", { "code": 120 }],
"no-tabs": "warn",
"curly": "warn"
}
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-console": "warn",
"no-eval": "error",
"semi": "warn",
"eqeqeq": "warn",
"max-len": [
"warn",
{
"code": 120
}
],
"no-tabs": "warn",
"curly": "warn",
"@typescript-eslint/no-var-requires": "off"
}
}
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Bug report
about: Create a report to help us improve
labels: bug
---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Code to reproduce the error.

**Code**
Code to reproduce the error.

**Please complete the following information:**
- OS: [e.g.Ubuntu 18.04]
- nodejs version [e.g. 12]

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project
labels: enhancement
---

**Is your feature request related to a problem? Please describe.**
Add a clear and concise description of what the problem is. E.g. *I'm always frustrated when [...]*

**Describe the solution you'd like**
Add a clear and concise description of what you want to happen.

**Describe alternatives you've considered**
Add a clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
57 changes: 0 additions & 57 deletions .github/workflows/Test.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Check pull request
on:
pull_request:
branches:
- main
jobs:
#############################################################################
# Check merge
#############################################################################
merge_check:
runs-on: ubuntu-latest
steps:
- name: Check if the pull request is mergeable to main
run: |
if [[ "$GITHUB_HEAD_REF" == 'dev' ]]; then exit 0; else exit 1; fi;
Loading

0 comments on commit 9761a62

Please sign in to comment.