Skip to main content
Module

x/pretty_assert/tslint.json

🦕A colorful assertEqual for deno
Latest
File
{ "rulesDirectory": ["tslint-plugin-prettier"], "extends": [ "tslint:latest", "tslint-config-google", "tslint-config-prettier" ], "linterOptions": { "exclude": [ "config/**/*.js", "node_modules/**/*.ts", "coverage/lcov-report/*.js" ] }, "rules": { "prettier": [ true, { "semi": true, "singleQuote": true, "printWidth": 120, "trailingComma": "all" } ], "no-console": true, "no-bitwise": false, "variable-name": [ true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore" ], "import-name": false, "ordered-imports": false, "interface-name": false, "no-empty-interface": false, "object-literal-sort-keys": false, "object-literal-shorthand": false }, "jsRules": {}}