UNPKG

kui-shell

Version:

This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool

47 lines (46 loc) 1.08 kB
{ "extends": [ "standard", "plugin:@typescript-eslint/recommended", "prettier", "prettier/standard", "prettier/@typescript-eslint" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 2018, "sourceType": "module" }, "plugins": ["@typescript-eslint"], "rules": { "dot-notation": "off", "no-undef": "off", "import/first": "off", "@typescript-eslint/camelcase": [ "error", { "allow": [ "wrap_line_length", "indent_size", "api_key", "ignore_certs", "__cloudshell_decorations", "follow_max", "open_timeout" ] } ], "@typescript-eslint/no-unused-vars": "error", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/explicit-member-accessibility": "error", "@typescript-eslint/no-var-requires": "off" }, "overrides": [ { "files": ["*.js"], "rules": { "@typescript-eslint/explicit-member-accessibility": "off" } } ] }