This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update templates and reformat source
- Loading branch information
1 parent
235abaf
commit 5ebb961
Showing
17 changed files
with
8,692 additions
and
9,593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
version: 2 | ||
jobs: | ||
build_12.18.2: | ||
build_14.15.4: | ||
docker: | ||
- image: 'circleci/node:12.18.2' | ||
- image: circleci/node:14.15.4 | ||
working_directory: ~/app | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
keys: | ||
- 'v1-dependencies-{{ checksum "package.json" }}' | ||
- v1-dependencies-{{ checksum "package.json" }} | ||
- v1-dependencies- | ||
- run: npm install | ||
- save_cache: | ||
paths: | ||
- node_modules | ||
key: 'v1-dependencies-{{ checksum "package.json" }}' | ||
key: v1-dependencies-{{ checksum "package.json" }} | ||
- run: npm test | ||
build_latest: | ||
docker: | ||
- image: 'circleci/node:latest' | ||
- image: circleci/node:latest | ||
working_directory: ~/app | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
keys: | ||
- 'v1-dependencies-{{ checksum "package.json" }}' | ||
- v1-dependencies-{{ checksum "package.json" }} | ||
- v1-dependencies- | ||
- run: npm install | ||
- save_cache: | ||
paths: | ||
- node_modules | ||
key: 'v1-dependencies-{{ checksum "package.json" }}' | ||
key: v1-dependencies-{{ checksum "package.json" }} | ||
- run: npm test | ||
workflows: | ||
version: 2 | ||
workflow: | ||
jobs: | ||
- build_12.18.2 | ||
- build_14.15.4 | ||
- build_latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,10 @@ | |
], | ||
"rules": { | ||
"prettier/prettier": [ | ||
"error" | ||
"error", | ||
{ | ||
"endOfLine": "auto" | ||
} | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
name: Bug report | ||
about: Report identified bugs | ||
--- | ||
|
||
<!-- CLICK "Preview" FOR INSTRUCTIONS IN A MORE READABLE FORMAT --> | ||
|
||
## Prerequisites | ||
|
||
We do our best to reply to all the issues on time. If you will follow the given guidelines, the turn around time will be faster. | ||
|
||
- Lots of raised issues are directly not bugs but instead are design decisions taken by us. | ||
- Make use of our [forum](https://forum.adonisjs.com/), or [discord server](https://discord.me/adonisjs), if you are not sure that you are reporting a bug. | ||
- Ensure the issue isn't already reported. | ||
- Ensure you are reporting the bug in the correct repo. | ||
|
||
_Delete the above section and the instructions in the sections below before submitting_ | ||
|
||
## Package version | ||
|
||
<!-- YOUR ANSWER --> | ||
|
||
## Node.js and npm version | ||
|
||
<!-- YOUR ANSWER --> | ||
|
||
## Sample Code (to reproduce the issue) | ||
|
||
<!-- YOUR ANSWER --> | ||
|
||
## BONUS (a sample repo to reproduce the issue) | ||
|
||
<!-- YOUR ANSWER --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: Feature request | ||
about: Propose changes for adding a new feature | ||
--- | ||
|
||
<!-- CLICK "Preview" FOR INSTRUCTIONS IN A MORE READABLE FORMAT --> | ||
|
||
## Prerequisites | ||
|
||
We do our best to reply to all the issues on time. If you will follow the given guidelines, the turn around time will be faster. | ||
|
||
## Consider an RFC | ||
|
||
Please create an [RFC](https://github.com/adonisjs/rfcs) instead, if | ||
|
||
- Feature introduces a breaking change | ||
- Demands lots of time and changes in the current code base. | ||
|
||
_Delete the above section and the instructions in the sections below before submitting_ | ||
|
||
## Why this feature is required (specific use-cases will be appreciated)? | ||
|
||
<!-- YOUR ANSWER --> | ||
|
||
## Have you tried any other work arounds? | ||
|
||
<!-- YOUR ANSWER --> | ||
|
||
## Are you willing to work on it with little guidance? | ||
|
||
<!-- YOUR ANSWER --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"semi": false, | ||
"singleQuote": true, | ||
"useTabs": true, | ||
"quoteProps": "consistent", | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 100, | ||
"overrides": [ | ||
{ | ||
"files": "*.md", | ||
"options": { | ||
"useTabs": false | ||
} | ||
} | ||
] | ||
"trailingComma": "es5", | ||
"semi": false, | ||
"singleQuote": true, | ||
"useTabs": false, | ||
"quoteProps": "consistent", | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 100 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.