-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(js-client)!: Adding strictes eslint and ts config to all package…
…s [fixes DXJ-464] (#355) * introduce eslint * Fix all eslint errors * Eslint fix and some touches * Fix tests * Fix misc errors * change semver * change semver #2 * Fix path * Fix path #2 * freeze lock file in CI * fix package install * Fix formatting of surrounding files * Add empty prettier config * Fix formatting * Fix build errors * Remove unused deps * remove changelog from formatting * deps cleanup * make resource importers async * Refactor * Fix error message * remove comment * more refactoring * Update packages/core/js-client/src/compilerSupport/registerService.ts Co-authored-by: shamsartem <[email protected]> * refactoring * refactoring fix * optimize import * Update packages/@tests/smoke/node/src/index.ts Co-authored-by: shamsartem <[email protected]> * Revert package * Fix pnpm lock * Lint-fix * Fix CI * Update tests * Fix build * Fix import * Use forked threads dep * Use fixed version * Update threads * Fix lint * Fix test * Fix test * Add polyfill for assert * Add subpath import * Fix tests * Fix deps --------- Co-authored-by: shamsartem <[email protected]>
- Loading branch information
1 parent
b469332
commit 919c7d6
Showing
135 changed files
with
10,712 additions
and
9,350 deletions.
There are no files selected for viewing
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,133 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 2022, | ||
"project": ["./tsconfig.eslint.json"], | ||
"sourceType": "module" | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/strict-type-checked", | ||
"plugin:import/recommended", | ||
"plugin:import/typescript", | ||
"prettier" | ||
], | ||
"plugins": [ | ||
"@typescript-eslint", | ||
"import", | ||
"license-header", | ||
"unused-imports" | ||
], | ||
"ignorePatterns": ["**/node_modules/**/*", "**/dist/**/*"], | ||
"rules": { | ||
"eqeqeq": [ | ||
"error", | ||
"always", | ||
{ | ||
"null": "ignore" | ||
} | ||
], | ||
"no-console": ["error"], | ||
"arrow-body-style": ["error", "always"], | ||
"no-empty": [ | ||
"error", | ||
{ | ||
"allowEmptyCatch": true | ||
} | ||
], | ||
"curly": ["error", "all"], | ||
"no-unused-expressions": ["error"], | ||
"dot-notation": ["off"], | ||
"object-curly-spacing": ["error", "always"], | ||
"padding-line-between-statements": [ | ||
"error", | ||
{ | ||
"blankLine": "always", | ||
"prev": "multiline-expression", | ||
"next": "*" | ||
}, | ||
{ | ||
"blankLine": "always", | ||
"prev": "*", | ||
"next": "multiline-expression" | ||
}, | ||
{ | ||
"blankLine": "always", | ||
"prev": "multiline-block-like", | ||
"next": "*" | ||
}, | ||
{ | ||
"blankLine": "always", | ||
"prev": "*", | ||
"next": "multiline-block-like" | ||
}, | ||
{ | ||
"blankLine": "always", | ||
"prev": "multiline-const", | ||
"next": "*" | ||
}, | ||
{ | ||
"blankLine": "always", | ||
"prev": "*", | ||
"next": "multiline-const" | ||
}, | ||
{ | ||
"blankLine": "always", | ||
"prev": "multiline-let", | ||
"next": "*" | ||
}, | ||
{ | ||
"blankLine": "always", | ||
"prev": "*", | ||
"next": "multiline-let" | ||
}, | ||
{ | ||
"blankLine": "any", | ||
"prev": "case", | ||
"next": "case" | ||
} | ||
], | ||
"import/extensions": ["error", "ignorePackages"], | ||
"import/no-unresolved": "off", | ||
"import/no-cycle": ["error"], | ||
"import/order": [ | ||
"error", | ||
{ | ||
"newlines-between": "always", | ||
"alphabetize": { | ||
"order": "asc", | ||
"caseInsensitive": true | ||
} | ||
} | ||
], | ||
"node/no-unsupported-features/es-syntax": "off", | ||
"node/no-unpublished-import": "off", | ||
"node/no-missing-import": "off", | ||
"@typescript-eslint/explicit-member-accessibility": [ | ||
"error", | ||
{ | ||
"accessibility": "no-public" | ||
} | ||
], | ||
"@typescript-eslint/strict-boolean-expressions": [ | ||
"error", | ||
{ | ||
"allowString": false, | ||
"allowNumber": false, | ||
"allowNullableObject": false, | ||
"allowNullableBoolean": false, | ||
"allowNullableString": false, | ||
"allowNullableNumber": false, | ||
"allowAny": false | ||
} | ||
], | ||
"@typescript-eslint/consistent-type-assertions": [ | ||
"error", | ||
{ | ||
"assertionStyle": "never" | ||
} | ||
], | ||
"unused-imports/no-unused-imports": "error", | ||
"license-header/header": ["error", "./resources/license-header.js"] | ||
} | ||
} |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*.log | ||
.idea | ||
.eslintcache | ||
|
||
# Dependency directories | ||
node_modules/ | ||
|
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 |
---|---|---|
@@ -1 +1,10 @@ | ||
.github | ||
.eslintcache | ||
pnpm-lock.yaml | ||
|
||
**/node_modules | ||
**/dist | ||
**/build | ||
**/public | ||
|
||
**/CHANGELOG.md |
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 @@ | ||
{} |
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
Oops, something went wrong.