diff --git a/.eslint.log b/.eslint.log new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.eslint.log @@ -0,0 +1 @@ + diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..923b23a --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,210 @@ +{ + "parserOptions": { + "ecmaVersion": 6, + "sourceType": "module" + }, + "env": { + "browser": true, + "node": true, + "es6": true + }, + "rules": { + "accessor-pairs": 2, + "array-callback-return": 2, + "complexity": 2, + "consistent-return": 2, + "curly": [1, "multi-or-nest"], + "default-case": 2, + "dot-location": [2, "property"], + "dot-notation": 2, + "eqeqeq": 2, + "guard-for-in": 2, + "no-alert": 1, + "no-caller": 2, + "no-case-declarations": 2, + "no-div-regex": 0, + "no-else-return": 0, + "no-empty-function": 2, + "no-empty-pattern": 2, + "no-eq-null": 2, + "no-eval": 2, + "no-extend-native": 2, + "no-extra-bind": 2, + "no-extra-label": 2, + "no-fallthrough": 2, + "no-floating-decimal": 2, + "no-implicit-coercion": 2, + "no-implicit-globals": 1, + "no-implied-eval": 2, + "no-invalid-this": 2, + "no-iterator": 2, + "no-labels": 1, + "no-lone-blocks": 2, + "no-loop-func": 2, + "no-multi-spaces": 1, + "no-multi-str": 1, + "no-native-reassign": 2, + "no-new": 1, + "no-new-func": 2, + "no-new-wrappers": 1, + "no-octal": 2, + "no-octal-escape": 2, + "no-param-reassign": 2, + "no-proto": 2, + "no-redeclare": 2, + "no-return-assign": 1, + "no-script-url": 2, + "no-self-assign": 2, + "no-self-compare": 2, + "no-sequences": 1, + "no-throw-literal": 1, + "no-unmodified-loop-condition": 1, + "no-unused-expressions": 1, + "no-unused-labels": 2, + "no-useless-call": 1, + "no-useless-concat": 1, + "no-useless-escape": 1, + "no-void": 2, + "no-warning-comments": 1, + "no-with": 2, + "radix": 0, + "vars-on-top": 1, + "wrap-iife": [2, "inside"], + "yoda": 2, + + + "strict": 2, + + + "init-declarations": 0, + "no-catch-shadow": 2, + "no-delete-var": 2, + "no-label-var": 2, + "no-restricted-globals": 0, + "no-shadow": 1, + "no-shadow-restricted-names": 2, + "no-undef": 2, + "no-undef-init": 2, + "no-undefined": 2, + "no-unused-vars": [2, {"args": "none"}], + "no-use-before-define": [1, { "functions": false, "classes": true }], + + + "callback-return": 1, + "global-require": 2, + "handle-callback-err": 1, + "no-mixed-requires": 2, + "no-new-require": 2, + "no-path-concat": 1, + "no-process-env": 2, + "no-process-exit": 1, + "no-restricted-modules": 0, + "no-sync": 1, + + + + "array-bracket-spacing": [2, "never", {"singleValue": true}], + "block-spacing": 2, + "brace-style": [1, "stroustrup", { "allowSingleLine": true }], + "camelcase": [2, {"properties": "never"}], + "comma-spacing": 2, + "comma-style": 2, + "computed-property-spacing": 1, + "consistent-this": [1, "self"], + "eol-last": 1, + "func-names": 0, + "func-style": [1, "declaration", { "allowArrowFunctions": true }], + "id-blacklist": [2, "data", "err", "e", "error", "cb", "callback", "obj"], + "id-length": [2, { "min": 3, "exceptions": ["_", "fs", "i"], "properties": "never" }], + "id-match": 0, + "indent": [1, 2], + "jsx-quotes": [1, "prefer-double"], + "key-spacing": [1, {"beforeColon": false, "afterColon": true}], + "keyword-spacing": 1, + "lines-around-comment": 0, + "max-depth": [1, 6], + "max-len": [1, {"code": 100, "tabWidth": 2, "ignoreUrls": true}], + "max-nested-callbacks": [1, {"max": 4}], + "max-params": [1, {"max": 3}], + "max-statements": [1, 12, {"ignoreTopLevelFunctions": true}], + "max-statements-per-line": [1, {"max": 2}], + "new-cap": 1, + "new-parens": 1, + "newline-after-var": 0, + "newline-before-return": 0, + "newline-per-chained-call": 0, + "no-array-constructor": 2, + "no-bitwise": 2, + "no-continue": 1, + "no-inline-comments": 1, + "no-lonely-if": 1, + "no-mixed-spaces-and-tabs": 2, + "no-multiple-empty-lines": [2, {"max": 3}], + "no-negated-condition": 1, + "no-nested-ternary": 2, + "no-new-object": 2, + "no-plusplus": 0, + "no-restricted-syntax": 0, + "no-spaced-func": 0, + "no-ternary": 0, + "no-trailing-spaces": 1, + "no-underscore-dangle": 0, + "no-unneeded-ternary": 1, + "no-whitespace-before-property": 1, + "object-curly-spacing": [1, "always"], + "one-var": [1, "never"], + "one-var-declaration-per-line": [1, "always"], + "operator-assignment": [1, "always"], + "operator-linebreak": [2, "after"], + "padded-blocks": [2, "never"], + "quote-props": [1, "as-needed"], + "quotes": [1, "single", {"avoidEscape": true, "allowTemplateLiterals": true}], + "require-jsdoc": [0, { + "require": { + "FunctionDeclaration": true, + "ClassDeclaration": true, + "MethodDefinition": false + } + }], + "semi": 1, + "semi-spacing": [1, {"before": false, "after": true}], + "sort-imports": 0, + "sort-vars": 0, + "space-before-blocks": [1, "always"], + "space-before-function-paren": [1, "never"], + "space-in-parens": 0, + "space-infix-ops": 1, + "space-unary-ops": [1, {"words": true, "nonwords": false}], + "spaced-comment": 0, + "wrap-regex": 1, + + + + "arrow-body-style": [1, "as-needed"], + "arrow-parens": [1, "as-needed"], + "arrow-spacing": [2, {"before": true, "after": true}], + "constructor-super": [2], + "generator-star-spacing": [1, {"before": true, "after": false}], + "no-class-assign": 2, + "no-confusing-arrow": 1, + "no-const-assign": 2, + "no-dupe-class-members": 2, + "no-duplicate-imports": 2, + "no-new-symbol": 2, + "no-restricted-imports": 0, + "no-this-before-super": 2, + "no-useless-constructor": 1, + "no-var": 2, + "object-shorthand": [1, "always"], + "prefer-arrow-callback": [1, { "allowNamedFunctions": true }], + "prefer-const": 1, + "prefer-reflect": 0, + "prefer-rest-params": 2, + "prefer-spread": 2, + "prefer-template": 0, + "require-yield": 1, + "template-curly-spacing": [1, "never"], + "yield-star-spacing": [1, {"before": false, "after": true}] + + } +} diff --git a/package.json b/package.json index 3cec5dd..90f059c 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,8 @@ "description": "Persistent SSH tunnels", "main": "index.js", "scripts": { + "lint": "eslint -c .eslintrc.json src/*.js -o .eslint.log && echo '' > .eslint.log ; cat .eslint.log ", + "pretranspile": "npm run -s lint", "transpile": "babel src -d ." }, "repository": { @@ -23,7 +25,8 @@ "homepage": "https://github.com/samueleaton/autossh#readme", "devDependencies": { "babel-cli": "^6.6.5", - "babel-preset-es2015": "^6.6.0" + "babel-preset-es2015": "^6.6.0", + "eslint": "^2.9.0" }, "dependencies": { "portfinder": "^1.0.3"