-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: maintenance, CI and misc improvements (#106)
* chore: upgrade packages, cleanup configs, use ts for scripts * chore: update textmate grammars and api schema * ci: test on ubuntu, windows and mac on node 18, 20 and 22 * chore: stray comment, tsconfig tweaks * chore: fix lint, ci, tests * ci: macos 13 runs on apple silicon * ci: only run e2e on ubuntu for the moment * fix: fast-glob, move check in deleteProject * ci: enable logger debug output in tests when debugging
- Loading branch information
Showing
196 changed files
with
26,666 additions
and
45,463 deletions.
There are no files selected for viewing
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 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
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
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,36 @@ | ||
import eslint from '@eslint/js'; | ||
import tseslint from 'typescript-eslint'; | ||
import prettierRecommended from 'eslint-plugin-prettier/recommended'; | ||
|
||
export default tseslint.config({ | ||
linterOptions: { | ||
reportUnusedDisableDirectives: 'error', | ||
}, | ||
files: [ | ||
'src/**/*.{js,ts,mjs,cjs,tsx,jsx}', | ||
'test/**/*.{js,ts,mjs,cjs,tsx,jsx}', | ||
'scripts/**/*.{js,ts,mjs,cjs,tsx,jsx}', | ||
'*.config.{js,ts}', | ||
], | ||
ignores: ['**/*.generated.ts', 'dist/**/*', 'dist-types/**/*'], | ||
extends: [ | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommended, | ||
prettierRecommended, | ||
], | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
'@typescript-eslint/no-var-requires': 'off', | ||
'@typescript-eslint/no-namespace': 'off', | ||
'@typescript-eslint/no-non-null-assertion': 'off', | ||
'@typescript-eslint/no-this-alias': 'off', | ||
'@typescript-eslint/no-unused-vars': [ | ||
'warn', | ||
{ | ||
args: 'none', | ||
varsIgnorePattern: '^_', | ||
}, | ||
], | ||
}, | ||
}); |
Oops, something went wrong.