This repository was archived by the owner on Jul 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Merged
Changes from 10 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
baac1be
introduce eslint
akim-bow c6abda1
Fix all eslint errors
akim-bow 3bcc732
Eslint fix and some touches
akim-bow 572152e
Fix tests
akim-bow e421552
Fix misc errors
akim-bow 1d185a7
change semver
akim-bow 773b652
change semver #2
akim-bow bde42e5
Fix path
akim-bow 3c795c8
Fix path #2
akim-bow 1f49947
freeze lock file in CI
akim-bow ebf2191
fix package install
akim-bow 3df618b
Fix formatting of surrounding files
akim-bow 9163f3a
Add empty prettier config
akim-bow b0c9b5d
Fix formatting
akim-bow ebd9970
Fix build errors
akim-bow 5026ea5
Remove unused deps
akim-bow c94cf87
remove changelog from formatting
akim-bow dd4ef4e
deps cleanup
akim-bow fc33ce3
make resource importers async
akim-bow 2abed24
Refactor
akim-bow 4ae649f
Fix error message
akim-bow 8d51ab1
remove comment
akim-bow 7ff7199
more refactoring
akim-bow ad52a1d
Update packages/core/js-client/src/compilerSupport/registerService.ts
akim-bow 20c9597
refactoring
akim-bow 2fd23f0
refactoring fix
akim-bow 867d559
Merge remote-tracking branch 'origin/dxj-464' into dxj-464
akim-bow 12c790e
optimize import
akim-bow b1a79b1
Update packages/@tests/smoke/node/src/index.ts
akim-bow f97397e
Revert package
akim-bow fcb9168
Merge remote-tracking branch 'origin/dxj-464' into dxj-464
akim-bow c928041
Merge branch 'master' into dxj-464
akim-bow b047938
Fix pnpm lock
akim-bow 138c555
Lint-fix
akim-bow 49d9898
Fix CI
akim-bow 51229f3
Update tests
akim-bow 72ad2df
Fix build
akim-bow 7ea5809
Fix import
akim-bow 91a9859
Use forked threads dep
akim-bow f0a449a
Use fixed version
akim-bow 887123e
Merge branch 'master' into dxj-464
akim-bow b74c54b
Update threads
akim-bow 2e1302a
Fix lint
akim-bow 2157bcc
Fix test
akim-bow 4971790
Fix test
akim-bow 0b888f2
Add polyfill for assert
akim-bow 381d20c
Add subpath import
akim-bow 61a6632
Fix tests
akim-bow 83af1f4
Fix deps
akim-bow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,162 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 2022, | ||
"project": [ | ||
"./tsconfig.eslint.json" | ||
], | ||
"sourceType": "module" | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:@typescript-eslint/recommended-requiring-type-checking", | ||
"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" | ||
] | ||
} | ||
} | ||
shamsartem marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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 hidden or 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/ | ||
|
shamsartem marked this conversation as resolved.
Show resolved
Hide resolved
|
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,8 @@ | ||
{ | ||
"ignorePatterns": [ | ||
"**/*.css" | ||
], | ||
"rules": { | ||
"no-console": "off" | ||
} | ||
} |
This file contains hidden or 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 hidden or 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
shamsartem marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.