-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Internals upgrades (primary pr) (#65)
* drop prometheus * moving more stuff to peer deps * more rm * fixing esm compat * lint fixes * lint fixes * test fixes * start on als * wiring * export testing helpers * refactoring tets to use test runner * test coverage for config * lint * checkpoint * refactoring wiring tests * logger tests * working on tests * lint * tests * check * prettier adjustment & moving tests * module builder * sleep teardown * tweaks * tests * perf hooks * comments * upgrades & lint * measurement fixes * als tweaks * test fixing * more test coverage
- Loading branch information
Showing
69 changed files
with
7,982 additions
and
8,230 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"singleQuote": false, | ||
"trailingComma": "all", | ||
"jsxSingleQuote": false, | ||
"printWidth": 100, | ||
"arrowParens": "avoid" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
import importPlugin from "eslint-plugin-import"; | ||
import jsonc from "eslint-plugin-jsonc"; | ||
import noUnsanitized from "eslint-plugin-no-unsanitized"; | ||
import simpleImportSort from "eslint-plugin-simple-import-sort"; | ||
import sortKeysFix from "eslint-plugin-sort-keys-fix"; | ||
import unicorn from "eslint-plugin-unicorn"; | ||
import prettier from "eslint-plugin-prettier"; | ||
import { fixupPluginRules } from "@eslint/compat"; | ||
import globals from "globals"; | ||
import tsParser from "@typescript-eslint/parser"; | ||
import sonarjs from "eslint-plugin-sonarjs"; | ||
import path from "node:path"; | ||
import { fileURLToPath } from "node:url"; | ||
import js from "@eslint/js"; | ||
import { FlatCompat } from "@eslint/eslintrc"; | ||
|
||
const __filename = fileURLToPath(import.meta.url); | ||
const __dirname = path.dirname(__filename); | ||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all, | ||
}); | ||
|
||
export default [ | ||
sonarjs.configs.recommended, | ||
{ | ||
plugins: { | ||
import: fixupPluginRules(importPlugin), | ||
jsonc, | ||
"no-unsanitized": noUnsanitized, | ||
"simple-import-sort": simpleImportSort, | ||
"sort-keys-fix": sortKeysFix, | ||
unicorn, | ||
prettier, | ||
}, | ||
languageOptions: { | ||
globals: { ...globals.node }, | ||
}, | ||
}, | ||
...compat | ||
.extends( | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:jsonc/recommended-with-jsonc", | ||
"plugin:unicorn/recommended", | ||
"plugin:prettier/recommended", | ||
"plugin:@cspell/recommended", | ||
) | ||
.map(config => ({ ...config, files: ["src/**/*.ts", "testing/**/*.ts"] })), | ||
|
||
// everything | ||
{ | ||
files: ["src/**/*.ts", "testing/**/*.ts"], | ||
languageOptions: { | ||
parser: tsParser, | ||
ecmaVersion: 5, | ||
sourceType: "script", | ||
parserOptions: { | ||
project: ["tsconfig.json"], | ||
}, | ||
}, | ||
rules: { | ||
"prettier/prettier": "error", | ||
"unicorn/switch-case-braces": "off", | ||
"unicorn/prefer-module": "off", | ||
"@typescript-eslint/no-magic-numbers": "warn", | ||
"unicorn/no-object-as-default-parameter": "off", | ||
"@cspell/spellchecker": ["warn", { checkComments: false, autoFix: true }], | ||
"unicorn/no-null": "off", | ||
"unicorn/no-empty-file": "off", | ||
"sonarjs/sonar-no-fallthrough": "off", | ||
"sonarjs/prefer-single-boolean-return": "off", | ||
"unicorn/no-array-callback-reference": "off", | ||
"sonarjs/prefer-nullish-coalescing": "off", | ||
"unicorn/no-await-expression-member": "off", | ||
"sonarjs/no-invalid-await": "off", | ||
"sonarjs/no-nested-functions": "off", | ||
"unicorn/no-useless-undefined": "off", | ||
"@typescript-eslint/unbound-method": "error", | ||
"import/no-extraneous-dependencies": ["error", { packageDir: "./" }], | ||
"sonarjs/prefer-immediate-return": "off", | ||
"unicorn/prevent-abbreviations": [ | ||
"error", | ||
{ | ||
replacements: { | ||
docs: false, | ||
e: false, | ||
dir: false, | ||
i: false, | ||
params: false, | ||
props: false, | ||
ref: false, | ||
temp: false, | ||
}, | ||
}, | ||
], | ||
"no-case-declarations": "off", | ||
"no-async-promise-executor": "off", | ||
"unicorn/prefer-node-protocol": "off", | ||
"unicorn/no-array-for-each": "off", | ||
"unicorn/import-style": "off", | ||
"sort-keys-fix/sort-keys-fix": "warn", | ||
"unicorn/prefer-event-target": "off", | ||
"simple-import-sort/imports": "warn", | ||
"sonarjs/no-misused-promises": "off", | ||
"sonarjs/no-commented-code": "off", | ||
"sonarjs/todo-tag": "off", | ||
"simple-import-sort/exports": "warn", | ||
"no-console": ["error"], | ||
"@typescript-eslint/no-unnecessary-type-constraint": "off", | ||
"@typescript-eslint/no-unused-vars": ["warn", { varsIgnorePattern: "_|logger" }], | ||
"@typescript-eslint/no-explicit-any": "error", | ||
}, | ||
}, | ||
// tests | ||
{ | ||
files: ["testing/**/*.ts"], | ||
languageOptions: { | ||
globals: { ...globals.jest }, | ||
parser: tsParser, | ||
ecmaVersion: 5, | ||
sourceType: "script", | ||
parserOptions: { | ||
project: ["tsconfig.spec.json"], | ||
}, | ||
}, | ||
rules: { | ||
"@typescript-eslint/unbound-method": "off", | ||
"@typescript-eslint/no-magic-numbers": "off", | ||
"sonarjs/no-duplicate-string": "off", | ||
"sonarjs/no-commented-code": "off", | ||
"sonarjs/no-dead-store": "off", | ||
"sonarjs/no-unused-collection": "warn", | ||
"unicorn/consistent-function-scoping": "off", | ||
}, | ||
}, | ||
// module definitions | ||
{ | ||
files: ["src/**/*.module.ts"], | ||
languageOptions: { | ||
parser: tsParser, | ||
ecmaVersion: 5, | ||
sourceType: "script", | ||
parserOptions: { | ||
project: ["tsconfig.json"], | ||
}, | ||
}, | ||
rules: { | ||
"@typescript-eslint/no-magic-numbers": "off", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.