Skip to content

Commit b2a7639

Browse files
committed
chore: update/format meta and source files
1 parent 4598686 commit b2a7639

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+14471
-12942
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2
22
jobs:
3-
build_12.0.0:
3+
build_12.18.2:
44
docker:
5-
- image: 'circleci/node:12.0.0'
5+
- image: 'circleci/node:12.18.2'
66
working_directory: ~/app
77
steps:
88
- checkout
@@ -36,5 +36,5 @@ workflows:
3636
version: 2
3737
workflow:
3838
jobs:
39-
- build_12.0.0
39+
- build_12.18.2
4040
- build_latest

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# http://editorconfig.org
22

33
[*]
4-
indent_style = space
4+
indent_style = tab
55
indent_size = 2
66
end_of_line = lf
77
charset = utf-8

.eslintrc.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"extends": [
3-
"plugin:adonis/typescriptPackage"
4-
]
3+
"plugin:adonis/typescriptPackage",
4+
"prettier",
5+
"prettier/@typescript-eslint"
6+
],
7+
"plugins": [
8+
"prettier"
9+
],
10+
"rules": {
11+
"prettier/prettier": [
12+
"error"
13+
]
14+
}
515
}

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ _Put an `x` in the boxes that apply_
1818

1919
_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._
2020

21-
- [ ] I have read the [CONTRIBUTING](https://github.com/[email protected]/adonisjs/blob/assembler.git/CONTRIBUTING.md) doc
21+
- [ ] I have read the [CONTRIBUTING](https://github.com/adonisjs/assembler/blob/master/CONTRIBUTING.md) doc
2222
- [ ] Lint and unit tests pass locally with my changes
2323
- [ ] I have added tests that prove my fix is effective or that my feature works.
2424
- [ ] I have added necessary documentation (if appropriate)

.github/lock.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Configuration for Lock Threads - https://github.com/dessant/lock-threads-app
2+
3+
# Number of days of inactivity before a closed issue or pull request is locked
4+
daysUntilLock: 60
5+
6+
# Skip issues and pull requests created before a given timestamp. Timestamp must
7+
# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
8+
skipCreatedBefore: false
9+
10+
# Issues and pull requests with these labels will be ignored. Set to `[]` to disable
11+
exemptLabels: ['Type: Security']
12+
13+
# Label to add before locking, such as `outdated`. Set to `false` to disable
14+
lockLabel: false
15+
16+
# Comment to post before locking. Set to `false` to disable
17+
lockComment: >
18+
This thread has been automatically locked since there has not been
19+
any recent activity after it was closed. Please open a new issue for
20+
related bugs.
21+
22+
# Assign `resolved` as the reason for locking. Set to `false` to disable
23+
setLockReason: false

.github/stale.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 60
3+
4+
# Number of days of inactivity before a stale issue is closed
5+
daysUntilClose: 7
6+
7+
# Issues with these labels will never be considered stale
8+
exemptLabels:
9+
- 'Type: Security'
10+
11+
# Label to use when marking an issue as stale
12+
staleLabel: 'Status: Abandoned'
13+
14+
# Comment to post when marking an issue as stale. Set to `false` to disable
15+
markComment: >
16+
This issue has been automatically marked as stale because it has not had
17+
recent activity. It will be closed if no further activity occurs. Thank you
18+
for your contributions.
19+
20+
# Comment to post when closing a stale issue. Set to `false` to disable
21+
closeComment: false

.prettierignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
build
2+
docs
3+
*.md
4+
config.json
5+
.eslintrc.json
6+
package.json
7+
*.html

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"trailingComma": "es5",
3+
"semi": false,
4+
"singleQuote": true,
5+
"useTabs": true,
6+
"quoteProps": "consistent",
7+
"bracketSpacing": true,
8+
"arrowParens": "always",
9+
"printWidth": 100
10+
}

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22

3-
Copyright 2019 Harminder virk, contributors
3+
Copyright 2020 Harminder virk, contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
22
matrix:
33
- nodejs_version: Stable
4-
- nodejs_version: 12.0.0
4+
- nodejs_version: 12.18.2
55
init: git config --global core.autocrlf true
66
install:
77
- ps: 'Install-Product node $env:nodejs_version'

0 commit comments

Comments
 (0)