feat: streamline code styles
parent
4be5d2ddf4
commit
dbc26b47a1
|
|
@ -1,10 +1,15 @@
|
||||||
{
|
{
|
||||||
"plugins": ["jest", "@typescript-eslint", "prettier", "unicorn"],
|
"plugins": ["jest", "@typescript-eslint", "prettier", "unicorn"],
|
||||||
"extends": ["plugin:unicorn/recommended", "plugin:github/recommended", "prettier"],
|
"extends": ["plugin:unicorn/recommended", "plugin:github/recommended", "plugin:prettier/recommended"],
|
||||||
"parser": "@typescript-eslint/parser",
|
"parser": "@typescript-eslint/parser",
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"ecmaVersion": 9,
|
"ecmaVersion": 2020,
|
||||||
"sourceType": "module"
|
"sourceType": "module",
|
||||||
|
"extraFileExtensions": [".mjs"],
|
||||||
|
"ecmaFeatures": {
|
||||||
|
"impliedStrict": true
|
||||||
|
},
|
||||||
|
"project": "./tsconfig.json"
|
||||||
},
|
},
|
||||||
"env": {
|
"env": {
|
||||||
"node": true,
|
"node": true,
|
||||||
|
|
@ -15,6 +20,17 @@
|
||||||
"prettier/prettier": "error",
|
"prettier/prettier": "error",
|
||||||
"import/no-extraneous-dependencies": 0,
|
"import/no-extraneous-dependencies": 0,
|
||||||
"import/no-namespace": "off",
|
"import/no-namespace": "off",
|
||||||
"no-undef": "off" // TODO: REMOVE THIS LINE WHEN UPDATING ESLINT RULES
|
// Allow forOfStatements
|
||||||
|
"no-restricted-syntax": ["error", "ForInStatement", "LabeledStatement", "WithStatement"],
|
||||||
|
// Continue is viable in forOf loops in generators
|
||||||
|
"no-continue": "off",
|
||||||
|
// From experience, named exports are almost always desired. I got tired of this rule
|
||||||
|
"import/prefer-default-export": "off",
|
||||||
|
// Unused vars are useful to keep method signatures consistent and documented
|
||||||
|
"@typescript-eslint/no-unused-vars": "off",
|
||||||
|
// For this project only use kebab-case
|
||||||
|
"unicorn/filename-case": ["error", { "cases": { "kebabCase": true } }],
|
||||||
|
// Allow Array.from(set) mitigate TS2569 which would require '--downlevelIteration'
|
||||||
|
"unicorn/prefer-spread": "off"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
"author": "Webber <webber@takken.io>",
|
"author": "Webber <webber@takken.io>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepare": "lefthook install",
|
"prepare": "lefthook install && npx husky uninstall -y",
|
||||||
"build": "yarn && tsc && ncc build lib --source-map --license licenses.txt",
|
"build": "yarn && tsc && ncc build lib --source-map --license licenses.txt",
|
||||||
"lint": "prettier --check \"src/**/*.{js,ts}\" && eslint src/**/*.ts",
|
"lint": "prettier --check \"src/**/*.{js,ts}\" && eslint src/**/*.ts",
|
||||||
"format": "prettier --write \"src/**/*.{js,ts}\"",
|
"format": "prettier --write \"src/**/*.{js,ts}\"",
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ import * as k8s from '@kubernetes/client-node';
|
||||||
import BuildParameters from '../../../build-parameters';
|
import BuildParameters from '../../../build-parameters';
|
||||||
import CloudRunnerLogger from '../../services/cloud-runner-logger';
|
import CloudRunnerLogger from '../../services/cloud-runner-logger';
|
||||||
import YAML from 'yaml';
|
import YAML from 'yaml';
|
||||||
|
import { IncomingMessage } from 'http';
|
||||||
|
|
||||||
class KubernetesStorage {
|
class KubernetesStorage {
|
||||||
public static async createPersistentVolumeClaim(
|
public static async createPersistentVolumeClaim(
|
||||||
|
|
@ -100,7 +101,7 @@ class KubernetesStorage {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async handleResult(
|
private static async handleResult(
|
||||||
result: { response: import('http').IncomingMessage; body: k8s.V1PersistentVolumeClaim },
|
result: { response: IncomingMessage; body: k8s.V1PersistentVolumeClaim },
|
||||||
kubeClient: k8s.CoreV1Api,
|
kubeClient: k8s.CoreV1Api,
|
||||||
namespace: string,
|
namespace: string,
|
||||||
pvcName: string,
|
pvcName: string,
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,5 @@
|
||||||
"noImplicitAny": false /* Re-enable after fixing compatibility */ /* Raise error on expressions and declarations with an implied 'any' type. */,
|
"noImplicitAny": false /* Re-enable after fixing compatibility */ /* Raise error on expressions and declarations with an implied 'any' type. */,
|
||||||
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
||||||
},
|
},
|
||||||
"exclude": ["node_modules", "**/*.test.ts"]
|
"exclude": ["node_modules", "dist"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue