UNPKG

rubik-cipher

Version:

Simple rubik cube cipher

95 lines 2.06 kB
{ "extends": [ "tslint-config-airbnb-base" ], "rules": { "no-magic-numbers": false, "eofline": false, "class-name": true, "curly": true, "no-any": false, "no-unused-expression": true, "no-use-before-declare": true, "no-switch-case-fall-through": true, "no-construct": true, "no-debugger": true, "no-duplicate-variable": true, "no-string-literal": true, "no-arg": true, "no-bitwise": true, "no-consecutive-blank-lines": true, "no-empty": true, "no-eval": true, "no-shadowed-variable": true, "linebreak-style": [false, "LF"], "semicolon": [ true, "always" ], "indent": [ true, "spaces", 2 ], "one-line": [ true, "check-catch", "check-else", "check-open-brace", "check-whitespace" ], "no-trailing-whitespace": [ true, "ignore-template-strings", "ignore-comments", "ignore-jsdoc" ], "typedef-whitespace": [ true, { "call-signature": "nospace", "index-signature": "nospace", "parameter": "nospace", "property-declaration": "nospace", "variable-declaration": "nospace" } ], "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-rest-spread", "check-type", "check-typecast", "check-type-operator", "check-preblock", "check-postbrace" ], "variable-name": [ true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case" ], "quotemark": [ true, "single", "avoid-escape" ], "switch-default": true, "triple-equals": [ true, "allow-null-check" ], "typedef": [ true, "call-signature", "parameter", "property-declaration" ] } }