@dpuse/eslint-config-dpuse 1.0.96 → 1.0.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config.json +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/eslint.config.js +1 -1
- package/package.json +2 -2
- package/src/index.ts +16 -9
- package/tsconfig.build.json +1 -0
package/config.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -5,14 +5,14 @@ export interface DPUseESLintConfigOptions {
|
|
|
5
5
|
files?: string[];
|
|
6
6
|
/** Extra glob patterns to ignore, on top of the standard DPUse build/report directories. */
|
|
7
7
|
ignores?: string[];
|
|
8
|
-
/** Module specifiers that `import-x` should treat as resolvable core modules
|
|
8
|
+
/** Module specifiers that `import-x` should treat as resolvable core modules. Defaults to `cloudflare:workers`, used by all DPUse Workers projects. */
|
|
9
9
|
importCoreModules?: string[];
|
|
10
10
|
/** Project-specific rule overrides, applied last so they take precedence over the shared defaults. */
|
|
11
11
|
rules?: Linter.RulesRecord;
|
|
12
|
-
/** Path to the consuming project's `tsconfig.json`, used
|
|
13
|
-
tsconfigPath
|
|
14
|
-
/** The consuming project's root directory
|
|
15
|
-
tsconfigRootDir
|
|
12
|
+
/** Path to the consuming project's `tsconfig.json`. Defaults to `./tsconfig.json`, used by every DPUse project. */
|
|
13
|
+
tsconfigPath?: string;
|
|
14
|
+
/** The consuming project's root directory. Defaults to `process.cwd()`, correct as long as ESLint is run from the project root. */
|
|
15
|
+
tsconfigRootDir?: string;
|
|
16
16
|
}
|
|
17
17
|
export declare function dpuseESLintConfig(options: DPUseESLintConfigOptions): Linter.Config[];
|
|
18
18
|
export default dpuseESLintConfig;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAarC,yEAAyE;AACzE,MAAM,WAAW,wBAAwB;IACrC,8FAA8F;IAC9F,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,4FAA4F;IAC5F,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAarC,yEAAyE;AACzE,MAAM,WAAW,wBAAwB;IACrC,8FAA8F;IAC9F,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,4FAA4F;IAC5F,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,uJAAuJ;IACvJ,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC7B,sGAAsG;IACtG,KAAK,CAAC,EAAE,MAAM,CAAC,WAAW,CAAC;IAC3B,mHAAmH;IACnH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,mIAAmI;IACnI,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAID,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,wBAAwB,GAAG,MAAM,CAAC,MAAM,EAAE,CAyEpF;AAED,eAAe,iBAAiB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -9,14 +9,14 @@ import tseslint from 'typescript-eslint';
|
|
|
9
9
|
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
10
10
|
// ── ESLint Configuration ─────────────────────────────────────────────────────────────────────────────────────────────
|
|
11
11
|
export function dpuseESLintConfig(options) {
|
|
12
|
-
const { files = ['eslint.config.*', 'src/**/*.ts'], ignores = [], importCoreModules = [], rules = {}, tsconfigPath, tsconfigRootDir } = options;
|
|
12
|
+
const { files = ['eslint.config.*', 'src/**/*.ts', 'vite.config.ts', 'vitest.config.ts'], ignores = [], importCoreModules = ['cloudflare:workers'], rules = {}, tsconfigPath = './tsconfig.json', tsconfigRootDir: tsconfigRootDirectory = process.cwd() } = options;
|
|
13
13
|
return defineConfig(
|
|
14
14
|
// Linting scope, strict TypeScript type-checking, and module resolver.
|
|
15
15
|
{
|
|
16
16
|
files,
|
|
17
17
|
extends: [...tseslint.configs.strictTypeChecked, ...tseslint.configs.stylisticTypeChecked],
|
|
18
18
|
languageOptions: {
|
|
19
|
-
parserOptions: { project: tsconfigPath, tsconfigRootDir }
|
|
19
|
+
parserOptions: { project: tsconfigPath, tsconfigRootDir: tsconfigRootDirectory }
|
|
20
20
|
},
|
|
21
21
|
settings: {
|
|
22
22
|
'import-x/core-modules': importCoreModules,
|
|
@@ -46,13 +46,13 @@ export function dpuseESLintConfig(options) {
|
|
|
46
46
|
'sort-imports': ['warn', { allowSeparatedGroups: true, ignoreCase: true, memberSyntaxSortOrder: ['none', 'all', 'single', 'multiple'] }],
|
|
47
47
|
'@typescript-eslint/no-unused-vars': 'warn',
|
|
48
48
|
'@eslint-community/eslint-comments/require-description': 'warn',
|
|
49
|
-
'security/detect-object-injection': 'off',
|
|
49
|
+
'security/detect-object-injection': 'off', // Generates too many false positives.
|
|
50
50
|
'sonarjs/no-commented-code': 'warn',
|
|
51
51
|
'sonarjs/no-dead-store': 'warn',
|
|
52
52
|
'sonarjs/no-unused-vars': 'warn',
|
|
53
53
|
'sonarjs/todo-tag': 'warn',
|
|
54
54
|
'unicorn/filename-case': ['error', { cases: { camelCase: true, pascalCase: true } }],
|
|
55
|
-
'unicorn/no-null': 'off',
|
|
55
|
+
'unicorn/no-null': 'off', // Null is required for JSON interop.
|
|
56
56
|
'unicorn/switch-case-braces': ['warn', 'avoid'],
|
|
57
57
|
...rules
|
|
58
58
|
}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,cAAc,MAAM,iDAAiD,CAAC;AAC7E,OAAO,EAAE,WAAW,IAAI,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AAChF,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AACtE,OAAO,cAAc,MAAM,wBAAwB,CAAC;AACpD,OAAO,aAAa,MAAM,uBAAuB,CAAC;AAClD,OAAO,aAAa,MAAM,uBAAuB,CAAC;AAClD,OAAO,cAAc,MAAM,wBAAwB,CAAC;AACpD,OAAO,QAAQ,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAoB5D,wHAAwH;AAExH,MAAM,UAAU,iBAAiB,CAAC,OAAiC;IAC/D,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/eslint.config.js
CHANGED
|
@@ -4,6 +4,6 @@ import { dpuseESLintConfig } from './src/index.ts';
|
|
|
4
4
|
// ── DPUse ESLint Configuration ───────────────────────────────────────────────────────────────────────────────────────
|
|
5
5
|
|
|
6
6
|
/** @type {import('eslint').Linter.Config[]} */
|
|
7
|
-
const config = dpuseESLintConfig({
|
|
7
|
+
const config = dpuseESLintConfig({});
|
|
8
8
|
|
|
9
9
|
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dpuse/eslint-config-dpuse",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.101",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Common ESLint configuration used in most DPUse projects.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"typescript-eslint": "^8.62.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@dpuse/dpuse-development": "^0.3.
|
|
48
|
+
"@dpuse/dpuse-development": "^0.3.652",
|
|
49
49
|
"@types/eslint-plugin-security": "^3.0.1",
|
|
50
50
|
"@types/node": "^26.1.0",
|
|
51
51
|
"eslint": "^10.6.0",
|
package/src/index.ts
CHANGED
|
@@ -18,20 +18,27 @@ export interface DPUseESLintConfigOptions {
|
|
|
18
18
|
files?: string[];
|
|
19
19
|
/** Extra glob patterns to ignore, on top of the standard DPUse build/report directories. */
|
|
20
20
|
ignores?: string[];
|
|
21
|
-
/** Module specifiers that `import-x` should treat as resolvable core modules
|
|
21
|
+
/** Module specifiers that `import-x` should treat as resolvable core modules. Defaults to `cloudflare:workers`, used by all DPUse Workers projects. */
|
|
22
22
|
importCoreModules?: string[];
|
|
23
23
|
/** Project-specific rule overrides, applied last so they take precedence over the shared defaults. */
|
|
24
24
|
rules?: Linter.RulesRecord;
|
|
25
|
-
/** Path to the consuming project's `tsconfig.json`, used
|
|
26
|
-
tsconfigPath
|
|
27
|
-
/** The consuming project's root directory
|
|
28
|
-
tsconfigRootDir
|
|
25
|
+
/** Path to the consuming project's `tsconfig.json`. Defaults to `./tsconfig.json`, used by every DPUse project. */
|
|
26
|
+
tsconfigPath?: string;
|
|
27
|
+
/** The consuming project's root directory. Defaults to `process.cwd()`, correct as long as ESLint is run from the project root. */
|
|
28
|
+
tsconfigRootDir?: string;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
// ── ESLint Configuration ─────────────────────────────────────────────────────────────────────────────────────────────
|
|
32
32
|
|
|
33
33
|
export function dpuseESLintConfig(options: DPUseESLintConfigOptions): Linter.Config[] {
|
|
34
|
-
const {
|
|
34
|
+
const {
|
|
35
|
+
files = ['eslint.config.*', 'src/**/*.ts', 'vite.config.ts', 'vitest.config.ts'],
|
|
36
|
+
ignores = [],
|
|
37
|
+
importCoreModules = ['cloudflare:workers'],
|
|
38
|
+
rules = {},
|
|
39
|
+
tsconfigPath = './tsconfig.json',
|
|
40
|
+
tsconfigRootDir: tsconfigRootDirectory = process.cwd()
|
|
41
|
+
} = options;
|
|
35
42
|
|
|
36
43
|
return defineConfig(
|
|
37
44
|
// Linting scope, strict TypeScript type-checking, and module resolver.
|
|
@@ -39,7 +46,7 @@ export function dpuseESLintConfig(options: DPUseESLintConfigOptions): Linter.Con
|
|
|
39
46
|
files,
|
|
40
47
|
extends: [...tseslint.configs.strictTypeChecked, ...tseslint.configs.stylisticTypeChecked],
|
|
41
48
|
languageOptions: {
|
|
42
|
-
parserOptions: { project: tsconfigPath, tsconfigRootDir }
|
|
49
|
+
parserOptions: { project: tsconfigPath, tsconfigRootDir: tsconfigRootDirectory }
|
|
43
50
|
},
|
|
44
51
|
settings: {
|
|
45
52
|
'import-x/core-modules': importCoreModules,
|
|
@@ -81,7 +88,7 @@ export function dpuseESLintConfig(options: DPUseESLintConfigOptions): Linter.Con
|
|
|
81
88
|
|
|
82
89
|
'@eslint-community/eslint-comments/require-description': 'warn',
|
|
83
90
|
|
|
84
|
-
'security/detect-object-injection': 'off',
|
|
91
|
+
'security/detect-object-injection': 'off', // Generates too many false positives.
|
|
85
92
|
|
|
86
93
|
'sonarjs/no-commented-code': 'warn',
|
|
87
94
|
'sonarjs/no-dead-store': 'warn',
|
|
@@ -89,7 +96,7 @@ export function dpuseESLintConfig(options: DPUseESLintConfigOptions): Linter.Con
|
|
|
89
96
|
'sonarjs/todo-tag': 'warn',
|
|
90
97
|
|
|
91
98
|
'unicorn/filename-case': ['error', { cases: { camelCase: true, pascalCase: true } }],
|
|
92
|
-
'unicorn/no-null': 'off',
|
|
99
|
+
'unicorn/no-null': 'off', // Null is required for JSON interop.
|
|
93
100
|
'unicorn/switch-case-braces': ['warn', 'avoid'],
|
|
94
101
|
|
|
95
102
|
...rules
|