UNPKG

koa2-rest-cli

Version:
77 lines (76 loc) 1.73 kB
{ "rules": { "class-name": true, "member-access": [true, "no-public"], "member-ordering": [ true, { "order": [ "public-static-field", "private-static-field", "protected-static-field", "public-static-method", "private-static-method", "protected-static-method", "public-instance-field", "private-instance-field", "protected-instance-field", "public-constructor", "private-constructor", "protected-constructor", "private-instance-method", "public-instance-method" ] } ], "no-any": false, "no-non-null-assertion": true, "no-var-requires": false, "only-arrow-functions": [ true, "allow-declarations" ], "prefer-for-of": true, "typedef": [true, "call-signature", "parameter", "member-variable-declaration"], "eofline": true, "indent": "spaces", "member-ordering": [ true, "public-before-private", "static-before-instance", "variables-before-functions" ], "no-eval": true, "no-sparse-arrays": true, "switch-default": true, "prefer-const": true, "arrow-return-shorthand": true, "trailing-comma": [ true, { "multiline": "always", "singleline": "never" } ], "one-line": [ true, "check-open-brace", "check-catch", "check-else", "check-whitespace" ], "quotemark": [ true, "single" ], "semicolon": false, "triple-equals": [ true, "allow-null-check" ], "variable-name": false, "whitespace": [ true ] } }