Skip to content

Commit c6c39e7

Browse files
author
Andrew Mayorov
authored
Merge pull request apache#50 from rbkmoney/merge/upstream/0.14.1
Sync with apache/thrift as of v0.14.1
2 parents 4c1230a + f7b6935 commit c6c39e7

1,951 files changed

Lines changed: 173217 additions & 79243 deletions

File tree

Some content is hidden

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

.asf.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
notifications:
2+
commits: commits@thrift.apache.org
3+
issues: dev@thrift.apache.org
4+
pullrequests_status: dev@thrift.apache.org
5+
pullrequests_comment: notifications@thrift.apache.org
6+
jira_options: link label worklog
7+
8+

.eslintignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# TODO: Use eslint on js lib and generated code
2+
3+
# Ignore lib/js for now, which uses jshint currently
4+
lib/js/*
5+
# Ignore all generated code for now
6+
**/gen-*
7+
8+
# Don't lint nested node_modules
9+
**/node_modules

.eslintrc.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"env": {
3+
"es6": true,
4+
"node": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:prettier/recommended"
9+
],
10+
"parserOptions": {
11+
"ecmaVersion": 2017
12+
},
13+
"rules": {
14+
"no-console": "off",
15+
"no-var": "error",
16+
"prefer-const": "error",
17+
"no-constant-condition": [
18+
"error",
19+
{
20+
"checkLoops": false
21+
}
22+
]
23+
}
24+
}

.flake8

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[flake8]
2+
exclude = .git,__pycache__,**/gen-*/**,contrib/**,docs/source/conf.py,old,build,dist
3+
ignore = W504,E402,E501
4+
max-complexity = 30
5+
max-line-length = 120

.github/pull_request_template.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!-- Explain the changes in the pull request below: -->
2+
3+
4+
<!-- We recommend you review the checklist/tips before submitting a pull request. -->
5+
6+
- [ ] Did you create an [Apache Jira](https://issues.apache.org/jira/projects/THRIFT/issues/) ticket? (not required for trivial changes)
7+
- [ ] If a ticket exists: Does your pull request title follow the pattern "THRIFT-NNNN: describe my issue"?
8+
- [ ] Did you squash your changes to a single commit? (not required, but preferred)
9+
- [ ] Did you do your best to avoid breaking changes? If one was needed, did you label the Jira ticket with "Breaking-Change"?
10+
- [ ] If your change does not involve any code, include `[skip ci]` anywhere in the commit message to free up build resources.
11+
12+
<!--
13+
The Contributing Guide at:
14+
https://github.com/apache/thrift/blob/master/CONTRIBUTING.md
15+
has more details and tips for committing properly.
16+
-->

.github/stale.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 60
5+
6+
# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
7+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8+
daysUntilClose: 7
9+
10+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
11+
exemptLabels:
12+
- Do Not Merge
13+
- blocked
14+
- pinned
15+
- security
16+
- "[Status] Maybe Later"
17+
18+
# Set to true to ignore issues in a project (defaults to false)
19+
exemptProjects: false
20+
21+
# Set to true to ignore issues in a milestone (defaults to false)
22+
exemptMilestones: false
23+
24+
# Label to use when marking as stale
25+
staleLabel: wontfix
26+
27+
# Comment to post when marking as stale. Set to `false` to disable
28+
markComment: >
29+
This issue has been automatically marked as stale because it has not had
30+
recent activity. It will be closed in 7 days if no further activity occurs.
31+
Thank you for your contributions.
32+
33+
# Comment to post when removing the stale label.
34+
unmarkComment: >
35+
This issue is no longer stale.
36+
Thank you for your contributions.
37+
38+
# Comment to post when closing a stale Issue or Pull Request.
39+
closeComment: >
40+
This issue has been automatically closed due to inactivity.
41+
Thank you for your contributions.
42+
43+
# Limit the number of actions per hour, from 1-30. Default is 30
44+
limitPerRun: 30
45+
46+
# Limit to only `issues` or `pulls`
47+
# only: issues
48+
49+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
50+
# pulls:
51+
# daysUntilStale: 30
52+
# markComment: >
53+
# This pull request has been automatically marked as stale because it has not had
54+
# recent activity. It will be closed if no further activity occurs. Thank you
55+
# for your contributions.
56+
57+
# issues:
58+
# exemptLabels:
59+
# - confirmed

0 commit comments

Comments
 (0)