forked from QuorumDMS/ftp-srv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request QuorumDMS#152 from trs/revert-143-remove-pasv-url-…
…resolution fix: revert "feat: remove host resolution"
- Loading branch information
Showing
26 changed files
with
1,647 additions
and
2,153 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
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,2 +1,9 @@ | ||
# START_CONFIT_GENERATED_CONTENT | ||
# Common folders to ignore | ||
node_modules/* | ||
bower_components/* | ||
|
||
# Config folder (optional - you might want to lint this...) | ||
config/* | ||
|
||
# END_CONFIT_GENERATED_CONTENT |
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,6 +1,7 @@ | ||
test_tmp/ | ||
|
||
node_modules/ | ||
|
||
dist/ | ||
reports/ | ||
npm-debug.log | ||
.nyc_output/ | ||
test_tmp/ |
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
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,38 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
|
||
types: [ | ||
{value: 'feat', name: 'feat: A new feature'}, | ||
{value: 'fix', name: 'fix: A bug fix'}, | ||
{value: 'docs', name: 'docs: Documentation only changes'}, | ||
{value: 'style', name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)'}, | ||
{value: 'refactor', name: 'refactor: A code change that neither fixes a bug nor adds a feature'}, | ||
{value: 'perf', name: 'perf: A code change that improves performance'}, | ||
{value: 'test', name: 'test: Adding missing tests'}, | ||
{value: 'chore', name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation'}, | ||
{value: 'revert', name: 'revert: Revert to a commit'}, | ||
{value: 'WIP', name: 'WIP: Work in progress'} | ||
], | ||
|
||
scopes: [], | ||
|
||
// it needs to match the value for field type. Eg.: 'fix' | ||
/* | ||
scopeOverrides: { | ||
fix: [ | ||
{name: 'merge'}, | ||
{name: 'style'}, | ||
{name: 'e2eTest'}, | ||
{name: 'unitTest'} | ||
] | ||
}, | ||
*/ | ||
|
||
allowCustomScopes: true, | ||
allowBreakingChanges: ['feat', 'fix'], | ||
|
||
// Appends the branch name to the footer of the commit. Useful for tracking commits after branches have been merged | ||
appendBranchNameToCommitMessage: false | ||
}; |
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,5 @@ | ||
test/**/*.spec.js | ||
--reporter mocha-multi-reporters | ||
--reporter-options configFile=config/testUnit/reporters.json | ||
--ui bdd | ||
--bail |
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,6 @@ | ||
{ | ||
"reporterEnabled": "spec", | ||
"mochaJunitReporterReporterOptions": { | ||
"mochaFile": "reports/junit.xml" | ||
} | ||
} |
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,162 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"node": true, | ||
"mocha": true, | ||
"es6": true | ||
}, | ||
"plugins": [ | ||
"mocha", | ||
"node" | ||
], | ||
"rules": { | ||
"mocha/no-exclusive-tests": 2, | ||
"no-warning-comments": [ | ||
1, | ||
{ | ||
"terms": ["todo", "fixme", "xxx"], | ||
"location": "start" | ||
}, | ||
], | ||
"object-curly-spacing": [ | ||
2, | ||
"never" | ||
], | ||
"array-bracket-spacing": [ | ||
2, | ||
"never" | ||
], | ||
"brace-style": [ | ||
2, | ||
"1tbs" | ||
], | ||
"consistent-return": 0, | ||
"indent": [ | ||
"error", | ||
2, | ||
{ | ||
"SwitchCase": 1, | ||
"MemberExpression": "off" | ||
} | ||
], | ||
"no-multiple-empty-lines": [ | ||
2, | ||
{ | ||
"max": 2 | ||
} | ||
], | ||
"no-use-before-define": [ | ||
2, | ||
"nofunc" | ||
], | ||
"one-var": [ | ||
2, | ||
"never" | ||
], | ||
"quote-props": [ | ||
2, | ||
"as-needed" | ||
], | ||
"quotes": [ | ||
2, | ||
"single" | ||
], | ||
"keyword-spacing": 2, | ||
"space-before-function-paren": [ | ||
2, | ||
{ | ||
"anonymous": "always", | ||
"named": "never" | ||
} | ||
], | ||
"space-in-parens": [ | ||
2, | ||
"never" | ||
], | ||
"strict": [ | ||
2, | ||
"global" | ||
], | ||
"curly": [ | ||
2, | ||
"multi-line" | ||
], | ||
"eol-last": 2, | ||
"key-spacing": [ | ||
2, | ||
{ | ||
"beforeColon": false, | ||
"afterColon": true | ||
} | ||
], | ||
"no-eval": 2, | ||
"no-with": 2, | ||
"space-infix-ops": 2, | ||
"dot-notation": [ | ||
2, | ||
{ | ||
"allowKeywords": true | ||
} | ||
], | ||
"eqeqeq": 2, | ||
"no-alert": 2, | ||
"no-caller": 2, | ||
"no-extend-native": 2, | ||
"no-extra-bind": 2, | ||
"no-implied-eval": 2, | ||
"no-iterator": 2, | ||
"no-label-var": 2, | ||
"no-labels": 2, | ||
"no-lone-blocks": 2, | ||
"no-loop-func": 2, | ||
"no-multi-spaces": 2, | ||
"no-multi-str": 2, | ||
"no-native-reassign": 2, | ||
"no-new": 2, | ||
"no-new-func": 2, | ||
"no-new-wrappers": 2, | ||
"no-octal-escape": 2, | ||
"no-proto": 2, | ||
"no-return-assign": 2, | ||
"no-script-url": 2, | ||
"no-sequences": 2, | ||
"no-unused-expressions": 2, | ||
"yoda": 2, | ||
"no-shadow": 2, | ||
"no-shadow-restricted-names": 2, | ||
"no-undef-init": 2, | ||
"no-console": 1, | ||
"camelcase": [ | ||
0, | ||
{ | ||
"properties": "never" | ||
} | ||
], | ||
"comma-spacing": 2, | ||
"comma-dangle": 1, | ||
"new-cap": 2, | ||
"new-parens": 2, | ||
"arrow-parens": [2, "always"], | ||
"no-array-constructor": 2, | ||
"array-callback-return": 1, | ||
"no-extra-parens": 2, | ||
"no-new-object": 2, | ||
"no-spaced-func": 2, | ||
"no-trailing-spaces": 2, | ||
"no-underscore-dangle": 0, | ||
"no-fallthrough": 0, | ||
"semi": 2, | ||
"semi-spacing": [ | ||
2, | ||
{ | ||
"before": false, | ||
"after": true | ||
} | ||
] | ||
}, | ||
"parserOptions": { | ||
"emcaVersion": 6, | ||
"sourceType": "module", | ||
"impliedStrict": true | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.