UNPKG

ready-primes

Version:

Get Primes in milliseconds. Pre-calculated collections of prime numbers, natural numbers with distinguished primes and methods to retrieve them.

59 lines 1.4 kB
{ "rules": { "class-name": true, "curly": true, "eofline": false, "forin": true, "indent": true, "label-position": true, "label-undefined": true, "max-line-length": [true, 150], "no-arg": true, "no-bitwise": true, "no-console": false, "no-construct": true, "no-constructor-vars": false, "no-debugger": true, "no-duplicate-key": true, "no-duplicate-variable": true, "no-empty": true, "no-eval": true, "no-string-literal": true, "no-switch-case-fall-through": true, "no-trailing-whitespace": true, "no-unused-expression": true, "no-unused-variable": true, "no-unreachable": true, "no-use-before-declare": false, "no-var-requires": false, "no-var-keyword": true, "one-line": [ true, "check-open-brace", "check-catch", "check-else", "check-whitespace" ], "quotemark": [true, "single"], "semicolon": true, "triple-equals": [true, "allow-null-check"], "typedef": [true, "call-signature", "parameter", "variable-declaration", "member-variable-declaration"], "use-strict": false, "variable-name": [ true, "allow-leading-underscore" ], "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type" ] } }