UEA-PRODEM

This commit is contained in:
2026-06-10 12:14:46 -03:00
parent f54126b9d8
commit 9947565694
5319 changed files with 148520 additions and 129332 deletions
+4 -4
View File
@@ -11,7 +11,7 @@ export interface ConfigWithExtends extends TSESLint.FlatConfig.Config {
* export default tseslint.config({
* files: ['** /*.ts'],
* extends: [
* eslint.configs.recommended,
* js.configs.recommended,
* tseslint.configs.recommended,
* ],
* rules: {
@@ -24,7 +24,7 @@ export interface ConfigWithExtends extends TSESLint.FlatConfig.Config {
*
* export default [
* {
* ...eslint.configs.recommended,
* ...js.configs.recommended,
* files: ['** /*.ts'],
* },
* ...tseslint.configs.recommended.map(conf => ({
@@ -50,11 +50,11 @@ export type ConfigArray = TSESLint.FlatConfig.ConfigArray;
* ```js
* // @ts-check
*
* import eslint from '@eslint/js';
* import js from '@eslint/js';
* import tseslint from 'typescript-eslint';
*
* export default tseslint.config(
* eslint.configs.recommended,
* js.configs.recommended,
* tseslint.configs.recommended,
* {
* rules: {
+2 -2
View File
@@ -7,11 +7,11 @@ exports.config = config;
* ```js
* // @ts-check
*
* import eslint from '@eslint/js';
* import js from '@eslint/js';
* import tseslint from 'typescript-eslint';
*
* export default tseslint.config(
* eslint.configs.recommended,
* js.configs.recommended,
* tseslint.configs.recommended,
* {
* rules: {
+1
View File
@@ -152,3 +152,4 @@ declare const _default: {
};
export default _default;
export { config, type ConfigWithExtends, type InfiniteDepthConfigWithExtends, type ConfigArray, } from './config-helper';
export type { CompatibleConfig, CompatibleConfigArray, CompatibleParser, CompatiblePlugin, } from './compatibility-types';
+30 -22
View File
@@ -1,10 +1,10 @@
{
"name": "typescript-eslint",
"version": "8.52.0",
"version": "8.61.0",
"description": "Tooling which enables you to use TypeScript with ESLint",
"files": [
"dist",
"!*.tsbuildinfo",
"!**/*.tsbuildinfo",
"README.md",
"LICENSE"
],
@@ -41,30 +41,23 @@
"eslintplugin",
"eslint-plugin"
],
"scripts": {
"build": "yarn run -BT nx build",
"clean": "rimraf dist/ coverage/",
"format": "yarn run -T format",
"lint": "yarn run -BT nx lint",
"test": "yarn run -BT nx test",
"typecheck": "yarn run -BT nx typecheck"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "8.52.0",
"@typescript-eslint/parser": "8.52.0",
"@typescript-eslint/typescript-estree": "8.52.0",
"@typescript-eslint/utils": "8.52.0"
"@typescript-eslint/eslint-plugin": "8.61.0",
"@typescript-eslint/parser": "8.61.0",
"@typescript-eslint/typescript-estree": "8.61.0",
"@typescript-eslint/utils": "8.61.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <6.0.0"
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
"typescript": ">=4.8.4 <6.1.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"eslint": "*",
"rimraf": "*",
"typescript": "*",
"vitest": "^3.2.4"
"@typescript/native-preview": "7.0.0-dev.20260518.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"rimraf": "^5.0.10",
"typescript": ">=4.8.4 <6.1.0",
"vitest": "^4.0.18"
},
"funding": {
"type": "opencollective",
@@ -85,6 +78,12 @@
"{projectRoot}/dist"
]
},
"typecheck:tsgo": {
"outputs": [
"{workspaceRoot}/dist",
"{projectRoot}/dist"
]
},
"test": {
"dependsOn": [
"^build",
@@ -92,5 +91,14 @@
]
}
}
},
"scripts": {
"build": "pnpm exec nx build",
"clean": "rimraf dist/ coverage/",
"format": "pnpm -w run format",
"lint": "pnpm -w exec nx lint",
"test": "pnpm -w exec nx test",
"typecheck": "pnpm -w exec nx typecheck",
"typecheck:tsgo": "pnpm -w exec nx typecheck:tsgo"
}
}
}