UNPKG

siphash

Version:

SipHash-2-4 fast short-input pseudo-random function

101 lines (99 loc) 2.36 kB
{ "parser": "babel-eslint", "parserOptions": { "ecmaVersion": 6, "sourceType": "module", "ecmaFeatures": { "jsx": true } }, "env": { "browser": true, "amd": true, "es6": false, "node": true, "mocha": true }, "extends": "eslint:recommended", "rules": { "comma-dangle": 1, "quotes": [ 1, "double" ], "no-undef": 1, "global-strict": 0, "no-extra-semi": 1, "no-console": 0, "no-unused-vars": 1, "no-trailing-spaces": [1, { "skipBlankLines": true }], "no-unreachable": 1, "no-alert": 0, "no-constant-condition": 0, "array-callback-return": 1, "block-scoped-var": 1, "consistent-return": 1, "curly": 1, "dot-notation": 1, "eqeqeq": 1, "guard-for-in": 1, "no-div-regex": 1, "no-else-return": 1, "no-eq-null": 1, "no-extend-native": 1, "no-extra-bind": 1, "no-extra-label": 1, "no-implicit-coercion": 1, "no-implicit-globals": 1, "no-invalid-this": 1, "no-iterator": 1, "no-lone-blocks": 1, "no-loop-func": 1, "no-multi-str": 1, "no-new": 1, "no-new-func": 1, "no-new-wrappers": 1, "no-self-compare": 1, "no-sequences": 1, "no-unused-expressions": 1, "no-useless-call": 1, "no-useless-concat": 1, "no-useless-escape": 1, "radix": 1, "wrap-iife": [1, "inside"], "yoda": 1, "no-catch-shadow": 1, "no-label-var": 1, "no-shadow" : 1, "no-shadow-restricted-names": 1, "no-use-before-define": 1, "callback-return": 1, "global-require": 1, "no-mixed-requires": 1, "no-new-require": 1, "no-path-concat": 1, "array-bracket-spacing": 1, "block-spacing": 1, "brace-style": 1, "comma-style": 1, "computed-property-spacing": 1, "consistent-this": 1, "eol-last": 1, "indent": 1, "jsx-quotes": 1, "key-spacing": 1, "keyword-spacing": 1, "linebreak-style": 1, "lines-around-comment": 1, "no-lonely-if": 1, "no-multiple-empty-lines": 1, "no-nested-ternary": 1, "no-unneeded-ternary": 1, "no-whitespace-before-property": 1, "operator-assignment": 1, "operator-linebreak": 1, "semi": [1, "always"], "semi-spacing": 1, "space-in-parens": 1, "space-infix-ops": 1, "space-unary-ops": 1, "wrap-regex": 1, } }