-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db47483
commit 2794529
Showing
11 changed files
with
252 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"node": true, | ||
"es6": false | ||
}, | ||
"rules": { | ||
// Possible Errors | ||
// These rules relate to possible syntax or logic errors in JavaScript code: | ||
"no-cond-assign": "error", | ||
"no-console": "warn", | ||
"no-constant-condition": "error", | ||
"no-control-regex": "error", | ||
"no-debugger": "warn", | ||
"no-dupe-args": "error", | ||
"no-dupe-keys": "error", | ||
"no-duplicate-case": "error", | ||
"no-empty-character-class": "error", | ||
"no-empty": "error", | ||
"no-ex-assign": "error", | ||
"no-extra-boolean-cast": "error", | ||
"no-extra-parens": ["error", "functions"], | ||
"no-extra-semi": "error", | ||
"no-func-assign": "error", | ||
"no-inner-declarations": "error", | ||
"no-invalid-regexp": "error", | ||
"no-irregular-whitespace": "error", | ||
"no-negated-in-lhs": "error", | ||
"no-obj-calls": "error", | ||
"no-prototype-builtins": "error", | ||
"no-regex-spaces": "error", | ||
"no-sparse-arrays": "error", | ||
"no-unexpected-multiline": "error", | ||
"no-unreachable": "error", | ||
"no-unsafe-finally": "error", | ||
"use-isnan": "error", | ||
"valid-jsdoc": "off", | ||
"valid-typeof": "error", | ||
|
||
// Best Practices | ||
// These rules relate to better ways of doing things to help you avoid problems: | ||
"accessor-pairs": "error", | ||
"array-callback-return": "error", | ||
"block-scoped-var": "error", | ||
"complexity": "error", | ||
"consistent-return": "error", | ||
"curly": "error", | ||
"default-case": "error", | ||
"dot-location": "error", | ||
"dot-notation": "error", | ||
"eqeqeq": "error", | ||
"guard-for-in": "error", | ||
"no-alert": "error", | ||
"no-caller": "error", | ||
"no-case-declarations": "error", | ||
"no-div-regex": "error", | ||
"no-else-return": "error", | ||
"no-empty-function": ["error", { "allow": ["functions"] }], | ||
"no-empty-pattern": "error", | ||
"no-eq-null": "error", | ||
"no-eval": "error", | ||
"no-extend-native": "error", | ||
"no-extra-bind": "error", | ||
"no-extra-label": "error", | ||
"no-fallthrough": "error", | ||
"no-floating-decimal": "error", | ||
"no-implicit-coercion": "error", | ||
"no-implicit-globals": "error", | ||
"no-implied-eval": "error", | ||
"no-invalid-this": "error", | ||
"no-iterator": "error", | ||
"no-labels": "error", | ||
"no-lone-blocks": "error", | ||
"no-loop-func": "error", | ||
"no-magic-numbers": "off", | ||
"no-multi-spaces": ["error", {"exceptions": { "VariableDeclarator": true }}], | ||
"no-multi-str": "error", | ||
"no-native-reassign": "error", | ||
"no-new-func": "error", | ||
"no-new-wrappers": "error", | ||
"no-new": "error", | ||
"no-octal-escape": "error", | ||
"no-octal": "error", | ||
"no-param-reassign": "off", | ||
"no-proto": "error", | ||
"no-redeclare": "error", | ||
"no-return-assign": "error", | ||
"no-script-url": "error", | ||
"no-self-assign": "error", | ||
"no-self-compare": "error", | ||
"no-sequences": "error", | ||
"no-throw-literal": "error", | ||
"no-unmodified-loop-condition": "error", | ||
"no-unused-expressions": "error", | ||
"no-unused-labels": "error", | ||
"no-useless-call": "error", | ||
"no-useless-concat": "error", | ||
"no-useless-escape": "error", | ||
"no-void": "error", | ||
"no-warning-comments": "off", | ||
"no-with": "error", | ||
"radix": "error", | ||
"vars-on-top": "off", | ||
"wrap-iife": "error", | ||
"yoda": "error", | ||
|
||
// Strict Mode | ||
// These rules relate to strict mode directives: | ||
"strict": "off", | ||
|
||
// Variables | ||
// These rules relate to variable declarations: | ||
"init-declarations": "off", | ||
"no-catch-shadow": "error", | ||
"no-delete-var": "error", | ||
"no-label-var": "error", | ||
"no-restricted-globals": "error", | ||
"no-shadow-restricted-names": "error", | ||
"no-shadow": "error", | ||
"no-undef-init": "error", | ||
"no-undef": "error", | ||
"no-undefined": "off", | ||
"no-unused-vars": "off", | ||
"no-use-before-define": "error", | ||
|
||
// Node.js and CommonJS | ||
// These rules relate to code running in Node.js, or in browsers with CommonJS: | ||
"callback-return": "off", | ||
"global-require": "error", | ||
"handle-callback-err": "error", | ||
"no-mixed-requires": "error", | ||
"no-new-require": "error", | ||
"no-path-concat": "error", | ||
"no-process-env": "error", | ||
"no-process-exit": "error", | ||
"no-restricted-modules": "error", | ||
"no-sync": "error", | ||
|
||
// Stylistic Issues | ||
// These rules relate to style guidelines, and are therefore quite subjective: | ||
"array-bracket-spacing": "error", | ||
"block-spacing": "error", | ||
"brace-style": "error", | ||
"camelcase": "error", | ||
"comma-dangle": "error", | ||
"comma-spacing": "error", | ||
"comma-style": "error", | ||
"computed-property-spacing": "error", | ||
"consistent-this": "off", | ||
"eol-last": "error", | ||
"func-names": "off", | ||
"func-style": "off", | ||
"id-blacklist": "error", | ||
"id-length": "off", | ||
"id-match": "error", | ||
"indent": "error", | ||
"jsx-quotes": "error", | ||
"key-spacing": "off", | ||
"keyword-spacing": "error", | ||
"linebreak-style": "error", | ||
"lines-around-comment": "error", | ||
"max-depth": "error", | ||
"max-len": ["error", 85], | ||
"max-lines": "off", | ||
"max-nested-callbacks": "error", | ||
"max-params": ["error", 5], | ||
"max-statements-per-line": "error", | ||
"max-statements": "off", | ||
"multiline-ternary": "off", | ||
"new-cap": "error", | ||
"new-parens": "error", | ||
"newline-after-var": "error", | ||
"newline-before-return": "off", | ||
"newline-per-chained-call": "error", | ||
"no-array-constructor": "error", | ||
"no-bitwise": "error", | ||
"no-continue": "error", | ||
"no-inline-comments": "off", | ||
"no-lonely-if": "error", | ||
"no-mixed-operators": "error", | ||
"no-mixed-spaces-and-tabs": "error", | ||
"no-multiple-empty-lines": "error", | ||
"no-negated-condition": "off", | ||
"no-nested-ternary": "error", | ||
"no-new-object": "error", | ||
"no-plusplus": "error", | ||
"no-restricted-syntax": "error", | ||
"no-spaced-func": "error", | ||
"no-tabs": "error", | ||
"no-ternary": "off", | ||
"no-trailing-spaces": "error", | ||
"no-underscore-dangle": "error", | ||
"no-unneeded-ternary": "error", | ||
"no-whitespace-before-property": "error", | ||
"object-curly-newline": ["error", {"minProperties": 1}], | ||
"object-curly-spacing": "error", | ||
"object-property-newline": "error", | ||
"one-var-declaration-per-line": "error", | ||
"one-var": "off", | ||
"operator-assignment": "error", | ||
"operator-linebreak": "error", | ||
"padded-blocks": ["off", "never"], | ||
"quote-props": ["error", "consistent-as-needed"], | ||
"quotes": ["error", "single", {"avoidEscape": true}], | ||
"require-jsdoc": "off", | ||
"semi-spacing": "error", | ||
"semi": "error", | ||
"sort-vars": "off", | ||
"space-before-blocks": "error", | ||
"space-before-function-paren": ["off", "always"], | ||
"space-in-parens": "error", | ||
"space-infix-ops": "error", | ||
"space-unary-ops": "error", | ||
"spaced-comment": "error", | ||
"unicode-bom": "error", | ||
"wrap-regex": "off" | ||
} | ||
} |
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,7 +1,8 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- "0.6" | ||
- "0.8" | ||
- "0.10" | ||
- "node" | ||
- "6" | ||
- "5" | ||
- "4" | ||
|
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 |
---|---|---|
|
@@ -33,6 +33,7 @@ function validateType(type) { | |
throw new Error('Unknown type: ' + type); | ||
} | ||
} | ||
|
||
/** | ||
* Watcher event. | ||
* | ||
|
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 |
---|---|---|
|
@@ -5,8 +5,6 @@ | |
* for terms. | ||
*/ | ||
|
||
|
||
|
||
var PERMISSIONS = { | ||
READ : 1, | ||
WRITE : 2, | ||
|
Oops, something went wrong.