-
Notifications
You must be signed in to change notification settings - Fork 7
update sailor to 2.6.7 #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
08ca461
update sailor to 2.6.7
2d90a91
fix require dotenv
962303f
downgrade dependencies
f1615ce
fix nodejs version
58ea08e
fix nodejs engine version
dc00952
add eslint airbnb dependencies
8609e69
bump eslint dependencies
81f4ae2
add eslint-plugin-import dependency
4c234cf
add dotenv dependency
8393158
fix nodejs in travis config
040baa3
Update component.json
stas-fomenko 8c6d41a
update component.json
qa-eio c28493f
upd
qa-eio 4bab4a9
upd
qa-eio 3149b92
Update README.md
stas-fomenko 5016526
Merge pull request #19 from elasticio/stas-fomenko-patch-1
stas-fomenko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,159 +1,7 @@ | ||
'use strict'; | ||
|
||
const ERROR = 'error'; | ||
const WARN = 'warn'; | ||
const ALWAYS = 'always'; | ||
const NEVER = 'never'; | ||
|
||
module.exports = { | ||
'extends': 'airbnb-base', | ||
'env': { | ||
es6: true, | ||
node: true, | ||
mocha: true | ||
}, | ||
plugins: [ | ||
"json", | ||
"mocha" | ||
], | ||
'extends': 'eslint:recommended', | ||
'rules': { | ||
'indent': [ | ||
ERROR, | ||
4, | ||
{ | ||
SwitchCase: 1 | ||
} | ||
], | ||
'linebreak-style': ERROR, | ||
'quotes': [ | ||
WARN, | ||
'single' | ||
], | ||
'semi': [ | ||
ERROR, | ||
ALWAYS | ||
], | ||
'func-names': ERROR, | ||
'no-empty': ERROR, | ||
'no-empty-function': ERROR, | ||
'brace-style': [ | ||
ERROR, | ||
'1tbs', | ||
{allowSingleLine: true} | ||
], | ||
'no-multiple-empty-lines': ERROR, | ||
'no-multi-spaces': ERROR, | ||
'one-var': [ | ||
ERROR, | ||
NEVER | ||
], | ||
'quote-props': [ | ||
WARN, | ||
'consistent-as-needed' | ||
], | ||
'key-spacing': ERROR, | ||
'space-unary-ops': [ | ||
ERROR, | ||
{ | ||
words: true, | ||
nonwords: false | ||
} | ||
], | ||
'no-spaced-func': ERROR, | ||
'space-before-function-paren': [ | ||
ERROR, | ||
{ | ||
anonymous: ALWAYS, | ||
named: NEVER | ||
} | ||
], | ||
'arrow-body-style': [ | ||
WARN, | ||
'as-needed' | ||
], | ||
'array-bracket-spacing': ERROR, | ||
'space-in-parens': ERROR, | ||
'comma-dangle': ERROR, | ||
'no-trailing-spaces': ERROR, | ||
'yoda': ERROR, | ||
'max-len': [ | ||
ERROR, | ||
120 | ||
], | ||
'camelcase': [ | ||
ERROR, | ||
{ | ||
properties: 'never' | ||
} | ||
], | ||
'new-cap': [ | ||
WARN, | ||
{ | ||
capIsNewExceptions: ['Q'] | ||
} | ||
], | ||
'comma-style': ERROR, | ||
'curly': ERROR, | ||
'object-curly-spacing': [ | ||
WARN, | ||
ALWAYS | ||
], | ||
'object-curly-newline': [ | ||
ERROR, | ||
{ | ||
ObjectExpression: { | ||
minProperties: 1 | ||
}, | ||
ObjectPattern: { | ||
minProperties: 5 | ||
} | ||
} | ||
], | ||
'object-property-newline': ERROR, | ||
'template-curly-spacing': ERROR, | ||
'dot-notation': ERROR, | ||
'dot-location': [ | ||
ERROR, | ||
'property' | ||
], | ||
'func-style': [ | ||
ERROR, | ||
'declaration', | ||
{ | ||
allowArrowFunctions: true | ||
} | ||
], | ||
'eol-last': ERROR, | ||
'space-infix-ops': ERROR, | ||
'keyword-spacing': ERROR, | ||
'space-before-blocks': ERROR, | ||
'no-invalid-this': ERROR, | ||
'consistent-this': ERROR, | ||
'no-this-before-super': ERROR, | ||
'no-unreachable': ERROR, | ||
'no-sparse-arrays': ERROR, | ||
'array-callback-return': ERROR, | ||
'strict': [ | ||
WARN, | ||
'global' | ||
], | ||
'eqeqeq': ERROR, | ||
'no-use-before-define': WARN, | ||
'no-undef': ERROR, | ||
'no-unused-vars': WARN, | ||
'no-mixed-spaces-and-tabs': ERROR, | ||
'operator-linebreak': [ | ||
ERROR, | ||
'before' | ||
], | ||
'no-console': [ | ||
WARN, | ||
{ | ||
'allow': [ | ||
'warn', | ||
'error' | ||
] | ||
} | ||
] | ||
'mocha': true, | ||
'node': true, | ||
} | ||
}; |
This file contains hidden or 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,3 +1,4 @@ | ||
node_modules | ||
coverage | ||
.idea | ||
.env |
This file contains hidden or 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,6 @@ | ||
language: node_js | ||
node_js: | ||
- v8 | ||
- v7 | ||
- v6 | ||
- v14 | ||
- v13 | ||
- v12 | ||
script: npm test && npm run integration-test |
This file contains hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.