@nexim/eslint-config 2.0.1 → 2.1.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,21 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.1.1](https://github.com/the-nexim/nanolib/compare/@nexim/eslint-config@2.1.0...@nexim/eslint-config@2.1.1) (2025-08-19)
7
+
8
+ **Note:** Version bump only for package @nexim/eslint-config
9
+
10
+ ## [2.1.0](https://github.com/the-nexim/nanolib/compare/@nexim/eslint-config@2.0.1...@nexim/eslint-config@2.1.0) (2025-04-27)
11
+
12
+ ### Features
13
+
14
+ * **eslint-config/typescript-config:** inspire stylistic-type-checked ([9a65024](https://github.com/the-nexim/nanolib/commit/9a65024dc2728dca10c7c93958617b6fa8e6cb3d)) by @njfamirm
15
+ * **eslint-config:** replace import-sort with import/order ([b81eb10](https://github.com/the-nexim/nanolib/commit/b81eb108276c95e3a939a038961e23e24514dd47)) by @njfamirm
16
+
17
+ ### Bug Fixes
18
+
19
+ * **eslint-config/extended-config:** remove additional stylistic ([822fcb4](https://github.com/the-nexim/nanolib/commit/822fcb4b356fad0f882af520c8fc693774e1848b)) by @njfamirm
20
+
6
21
  ## [2.0.1](https://github.com/the-nexim/nanolib/compare/@nexim/eslint-config@2.0.0...@nexim/eslint-config@2.0.1) (2025-04-21)
7
22
 
8
23
  **Note:** Version bump only for package @nexim/eslint-config
@@ -1 +1 @@
1
- {"version":3,"file":"extended-config.d.ts","sourceRoot":"","sources":["../../src/lib/extended-config.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,WAAW,qEAKvB,CAAC"}
1
+ {"version":3,"file":"extended-config.d.ts","sourceRoot":"","sources":["../../src/lib/extended-config.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,WAAW,qEAAwG,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"typescript-config.d.ts","sourceRoot":"","sources":["../../src/lib/typescript-config.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,QAAQ,qEA8EnB,CAAC"}
1
+ {"version":3,"file":"typescript-config.d.ts","sourceRoot":"","sources":["../../src/lib/typescript-config.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,QAAQ,qEAwHnB,CAAC"}
package/dist/main.mjs CHANGED
@@ -1,10 +1,10 @@
1
- /* @nexim/eslint-config v2.0.1 */
1
+ /* @nexim/eslint-config v2.1.1 */
2
2
 
3
3
  // src/lib/typescript-config.ts
4
- import * as globals from "globals";
5
- import importPlugin from "eslint-plugin-import";
6
4
  import stylistic from "@stylistic/eslint-plugin";
5
+ import importPlugin from "eslint-plugin-import";
7
6
  import tsdocPlugin from "eslint-plugin-tsdoc";
7
+ import * as globals from "globals";
8
8
  import { plugin, parser, config } from "typescript-eslint";
9
9
  var tsconfigRootDir = import.meta.dirname;
10
10
  var tsConfig = config({
@@ -31,6 +31,7 @@ var tsConfig = config({
31
31
  "@stylistic/max-len": ["error", { code: 140 }],
32
32
  "no-eval": ["error", { allowIndirect: true }],
33
33
  "@stylistic/no-floating-decimal": "error",
34
+ // no .5 or 2., use 0.5 or 2.0
34
35
  "@stylistic/space-infix-ops": "error",
35
36
  "@stylistic/brace-style": ["error", "stroustrup", { allowSingleLine: true }],
36
37
  "@stylistic/array-bracket-spacing": ["error", "always"],
@@ -64,13 +65,76 @@ var tsConfig = config({
64
65
  "tsdoc/syntax": "warn",
65
66
  "no-unused-vars": "off",
66
67
  "prefer-const": "error",
67
- // 'sort-imports': 'error',
68
- "@typescript-eslint/prefer-string-starts-ends-with": "off",
69
- "@typescript-eslint/no-dynamic-delete": "off",
70
- "@typescript-eslint/no-non-null-assertion": "off",
71
68
  "no-unused-labels": "off",
72
69
  "require-await": "error",
73
- "@typescript-eslint/consistent-type-definitions": "off"
70
+ "@typescript-eslint/no-dynamic-delete": "off",
71
+ "@typescript-eslint/no-non-null-assertion": "off",
72
+ // picked and customized from `stylistic-type-checked`
73
+ "@typescript-eslint/consistent-type-definitions": "off",
74
+ // prefer interface over type
75
+ "@typescript-eslint/ban-ts-comment": ["error"],
76
+ // no @ts-ignore without description
77
+ "@typescript-eslint/no-deprecated": "error",
78
+ // catches usage of @deprecated items
79
+ "@typescript-eslint/no-duplicate-type-constituents": "error",
80
+ // bad: type T = 'a' | 'a'
81
+ "@typescript-eslint/no-explicit-any": "error",
82
+ // bad: const x: any
83
+ "@typescript-eslint/no-extra-non-null-assertion": "error",
84
+ // bad: foo!!.bar
85
+ "no-implied-eval": "off",
86
+ "@typescript-eslint/no-invalid-void-type": "error",
87
+ // bad: type T = void | string
88
+ "@typescript-eslint/no-misused-spread": "error",
89
+ // bad: [...new Set([])]
90
+ "@typescript-eslint/no-non-null-asserted-nullish-coalescing": "error",
91
+ // bad: foo! ?? bar
92
+ "@typescript-eslint/no-non-null-asserted-optional-chain": "error",
93
+ // bad: foo?.bar!
94
+ "@typescript-eslint/no-redundant-type-constituents": "error",
95
+ // bad: type T = string | 'a'
96
+ "@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
97
+ // bad: bool === true
98
+ "@typescript-eslint/no-unnecessary-template-expression": "error",
99
+ // bad: `${5}`
100
+ "@typescript-eslint/no-unnecessary-type-arguments": "error",
101
+ // bad: Map<string> when string is default
102
+ "@typescript-eslint/no-unnecessary-type-assertion": "error",
103
+ // bad: x as string when x is string
104
+ "@typescript-eslint/no-unnecessary-type-constraint": "error",
105
+ // bad: <T extends any>
106
+ "no-unused-expressions": "off",
107
+ "@typescript-eslint/no-unused-expressions": "error",
108
+ // bad: x + y;
109
+ "no-useless-constructor": "off",
110
+ "@typescript-eslint/no-useless-constructor": "error",
111
+ // bad: constructor() {}
112
+ "@typescript-eslint/no-wrapper-object-types": "error",
113
+ // bad: String, use string
114
+ "no-throw-literal": "off",
115
+ "@typescript-eslint/only-throw-error": "error",
116
+ // bad: throw "error"
117
+ "@typescript-eslint/prefer-as-const": "error",
118
+ // bad: let x: 'foo' = 'foo'
119
+ "prefer-promise-reject-errors": "off",
120
+ "@typescript-eslint/prefer-promise-reject-errors": "error",
121
+ // bad: reject('error')
122
+ "@typescript-eslint/prefer-reduce-type-parameter": "error",
123
+ // use <T> reduce over type assertions
124
+ "@typescript-eslint/require-await": "error",
125
+ // async must use await
126
+ "import/order": [
127
+ "error",
128
+ {
129
+ groups: ["builtin", "external", "internal", ["parent", "sibling", "index"], "object", "unknown", "type"],
130
+ "newlines-between": "always",
131
+ warnOnUnassignedImports: true,
132
+ alphabetize: {
133
+ order: "asc",
134
+ caseInsensitive: true
135
+ }
136
+ }
137
+ ]
74
138
  },
75
139
  settings: {
76
140
  "import/resolver": {
@@ -84,8 +148,8 @@ var tsConfig = config({
84
148
  });
85
149
 
86
150
  // src/lib/javascript-config.ts
87
- import * as globals2 from "globals";
88
151
  import tsdocPlugin2 from "eslint-plugin-tsdoc";
152
+ import * as globals2 from "globals";
89
153
  import { plugin as plugin2, configs, config as config2 } from "typescript-eslint";
90
154
  var jsConfigs = config2({
91
155
  extends: [configs.disableTypeChecked],
@@ -111,14 +175,9 @@ var jsConfigs = config2({
111
175
  });
112
176
 
113
177
  // src/lib/extended-config.ts
114
- import eslintJs from "@eslint/js";
115
- import { config as config3, configs as configs2 } from "typescript-eslint";
116
- var baseExtends = config3(
117
- eslintJs.configs.recommended,
118
- configs2.strict,
119
- configs2.stylistic,
120
- configs2.stylisticTypeChecked
121
- );
178
+ import eslint from "@eslint/js";
179
+ import tslint from "typescript-eslint";
180
+ var baseExtends = tslint.config(eslint.configs.recommended, tslint.configs.stylisticTypeChecked, tslint.configs.strict);
122
181
  export {
123
182
  baseExtends,
124
183
  jsConfigs,
package/dist/main.mjs.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/lib/typescript-config.ts", "../src/lib/javascript-config.ts", "../src/lib/extended-config.ts"],
4
- "sourcesContent": ["import * as globals from 'globals';\n// @ts-expect-error - don't have types\nimport importPlugin from 'eslint-plugin-import';\nimport stylistic from '@stylistic/eslint-plugin';\nimport tsdocPlugin from 'eslint-plugin-tsdoc';\nimport { plugin, parser, config } from 'typescript-eslint';\n\nconst tsconfigRootDir = import.meta.dirname;\n\nexport const tsConfig = config({\n files: [ '**/*.{ts,tsx}' ],\n languageOptions: {\n globals: {\n ...globals['shared-node-browser'],\n },\n ecmaVersion: 'latest',\n sourceType: 'module',\n parser: parser,\n parserOptions: {\n projectService: true,\n tsconfigRootDir,\n },\n },\n\n extends: [ importPlugin.flatConfigs.recommended, importPlugin.flatConfigs.typescript ],\n plugins: {\n '@typescript-eslint': plugin,\n '@stylistic': stylistic,\n tsdoc: tsdocPlugin,\n },\n rules: {\n '@stylistic/max-len': [ 'error', { code: 140 } ],\n 'no-eval': [ 'error', { allowIndirect: true } ],\n '@stylistic/no-floating-decimal': 'error',\n '@stylistic/space-infix-ops': 'error',\n '@stylistic/brace-style': [ 'error', 'stroustrup', { allowSingleLine: true } ],\n '@stylistic/array-bracket-spacing': [ 'error', 'always' ],\n '@stylistic/indent': [\n 'error',\n 2,\n {\n SwitchCase: 1,\n VariableDeclarator: 1,\n outerIIFEBody: 1,\n MemberExpression: 1,\n FunctionDeclaration: { parameters: 1, body: 1 },\n FunctionExpression: { parameters: 1, body: 1 },\n CallExpression: { arguments: 1 },\n ArrayExpression: 1,\n ObjectExpression: 1,\n ImportDeclaration: 1,\n flatTernaryExpressions: false,\n ignoreComments: false,\n ignoredNodes: [\n 'TemplateLiteral *',\n 'TSTypeParameterInstantiation',\n 'FunctionExpression > .params[decorators.length > 0]',\n 'FunctionExpression > .params > :matches(Decorator, :not(:first-child))',\n 'ClassBody.body > PropertyDefinition[decorators.length > 0] > .key',\n ],\n },\n ],\n '@stylistic/operator-linebreak': [ 'error', 'after', { overrides: { '?': 'before', ':': 'before' } } ],\n\n '@stylistic/semi': 'error',\n 'tsdoc/syntax': 'warn',\n\n 'no-unused-vars': 'off',\n 'prefer-const': 'error',\n // 'sort-imports': 'error',\n\n '@typescript-eslint/prefer-string-starts-ends-with': 'off',\n '@typescript-eslint/no-dynamic-delete': 'off',\n '@typescript-eslint/no-non-null-assertion': 'off',\n 'no-unused-labels': 'off',\n 'require-await': 'error',\n '@typescript-eslint/consistent-type-definitions': 'off',\n },\n settings: {\n 'import/resolver': {\n typescript: {\n alwaysTryTypes: true,\n project: [ tsconfigRootDir ],\n },\n node: {},\n },\n },\n});\n", "import * as globals from 'globals';\nimport tsdocPlugin from 'eslint-plugin-tsdoc';\nimport { plugin, configs, config } from 'typescript-eslint';\n\nexport const jsConfigs = config({\n extends: [ configs.disableTypeChecked ],\n files: [ '**/*.{mjs,js,cjs}' ],\n plugins: {\n '@typescript-eslint': plugin,\n tsdoc: tsdocPlugin,\n },\n languageOptions: {\n globals: {\n ...globals.commonjs,\n ...globals.node,\n console: 'readonly', // TODO: why is this not in globals?\n },\n sourceType: 'commonjs',\n },\n rules: {\n '@typescript-eslint/no-require-imports': 'off',\n '@typescript-eslint/explicit-module-boundary-types': 'off',\n 'tsdoc/syntax': 'off',\n },\n});\n", "import eslintJs from '@eslint/js';\nimport {config, configs} from 'typescript-eslint';\n\nexport const baseExtends = config(\n eslintJs.configs.recommended,\n configs.strict,\n configs.stylistic,\n configs.stylisticTypeChecked,\n);\n"],
5
- "mappings": "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",
6
- "names": ["globals", "tsdocPlugin", "plugin", "config", "config", "configs"]
4
+ "sourcesContent": ["import stylistic from '@stylistic/eslint-plugin';\nimport importPlugin from 'eslint-plugin-import';\nimport tsdocPlugin from 'eslint-plugin-tsdoc';\nimport * as globals from 'globals';\nimport { plugin, parser, config } from 'typescript-eslint';\n\nconst tsconfigRootDir = import.meta.dirname;\n\nexport const tsConfig = config({\n files: [ '**/*.{ts,tsx}' ],\n languageOptions: {\n globals: {\n ...globals['shared-node-browser'],\n },\n ecmaVersion: 'latest',\n sourceType: 'module',\n parser: parser,\n parserOptions: {\n projectService: true,\n tsconfigRootDir,\n },\n },\n\n extends: [ importPlugin.flatConfigs.recommended, importPlugin.flatConfigs.typescript ],\n plugins: {\n '@typescript-eslint': plugin,\n '@stylistic': stylistic,\n tsdoc: tsdocPlugin,\n },\n rules: {\n '@stylistic/max-len': [ 'error', { code: 140 } ],\n 'no-eval': [ 'error', { allowIndirect: true } ],\n '@stylistic/no-floating-decimal': 'error', // no .5 or 2., use 0.5 or 2.0\n '@stylistic/space-infix-ops': 'error',\n '@stylistic/brace-style': [ 'error', 'stroustrup', { allowSingleLine: true } ],\n '@stylistic/array-bracket-spacing': [ 'error', 'always' ],\n '@stylistic/indent': [\n 'error',\n 2,\n {\n SwitchCase: 1,\n VariableDeclarator: 1,\n outerIIFEBody: 1,\n MemberExpression: 1,\n FunctionDeclaration: { parameters: 1, body: 1 },\n FunctionExpression: { parameters: 1, body: 1 },\n CallExpression: { arguments: 1 },\n ArrayExpression: 1,\n ObjectExpression: 1,\n ImportDeclaration: 1,\n flatTernaryExpressions: false,\n ignoreComments: false,\n ignoredNodes: [\n 'TemplateLiteral *',\n 'TSTypeParameterInstantiation',\n 'FunctionExpression > .params[decorators.length > 0]',\n 'FunctionExpression > .params > :matches(Decorator, :not(:first-child))',\n 'ClassBody.body > PropertyDefinition[decorators.length > 0] > .key',\n ],\n },\n ],\n '@stylistic/operator-linebreak': [ 'error', 'after', { overrides: { '?': 'before', ':': 'before' } } ],\n\n '@stylistic/semi': 'error',\n 'tsdoc/syntax': 'warn',\n\n 'no-unused-vars': 'off',\n 'prefer-const': 'error',\n\n 'no-unused-labels': 'off',\n 'require-await': 'error',\n\n '@typescript-eslint/no-dynamic-delete': 'off',\n '@typescript-eslint/no-non-null-assertion': 'off',\n\n // picked and customized from `stylistic-type-checked`\n '@typescript-eslint/consistent-type-definitions': 'off', // prefer interface over type\n '@typescript-eslint/ban-ts-comment': [ 'error' ], // no @ts-ignore without description\n '@typescript-eslint/no-deprecated': 'error', // catches usage of @deprecated items\n '@typescript-eslint/no-duplicate-type-constituents': 'error', // bad: type T = 'a' | 'a'\n '@typescript-eslint/no-explicit-any': 'error', // bad: const x: any\n '@typescript-eslint/no-extra-non-null-assertion': 'error', // bad: foo!!.bar\n 'no-implied-eval': 'off',\n '@typescript-eslint/no-invalid-void-type': 'error', // bad: type T = void | string\n '@typescript-eslint/no-misused-spread': 'error', // bad: [...new Set([])]\n '@typescript-eslint/no-non-null-asserted-nullish-coalescing': 'error', // bad: foo! ?? bar\n '@typescript-eslint/no-non-null-asserted-optional-chain': 'error', // bad: foo?.bar!\n '@typescript-eslint/no-redundant-type-constituents': 'error', // bad: type T = string | 'a'\n '@typescript-eslint/no-unnecessary-boolean-literal-compare': 'error', // bad: bool === true\n '@typescript-eslint/no-unnecessary-template-expression': 'error', // bad: `${5}`\n '@typescript-eslint/no-unnecessary-type-arguments': 'error', // bad: Map<string> when string is default\n '@typescript-eslint/no-unnecessary-type-assertion': 'error', // bad: x as string when x is string\n '@typescript-eslint/no-unnecessary-type-constraint': 'error', // bad: <T extends any>\n 'no-unused-expressions': 'off',\n '@typescript-eslint/no-unused-expressions': 'error', // bad: x + y;\n 'no-useless-constructor': 'off',\n '@typescript-eslint/no-useless-constructor': 'error', // bad: constructor() {}\n '@typescript-eslint/no-wrapper-object-types': 'error', // bad: String, use string\n 'no-throw-literal': 'off',\n '@typescript-eslint/only-throw-error': 'error', // bad: throw \"error\"\n '@typescript-eslint/prefer-as-const': 'error', // bad: let x: 'foo' = 'foo'\n 'prefer-promise-reject-errors': 'off',\n '@typescript-eslint/prefer-promise-reject-errors': 'error', // bad: reject('error')\n '@typescript-eslint/prefer-reduce-type-parameter': 'error', // use <T> reduce over type assertions\n '@typescript-eslint/require-await': 'error', // async must use await\n\n 'import/order': [\n 'error',\n {\n groups: [ 'builtin', 'external', 'internal', [ 'parent', 'sibling', 'index' ], 'object', 'unknown', 'type' ],\n 'newlines-between': 'always',\n warnOnUnassignedImports: true,\n alphabetize: {\n order: 'asc',\n caseInsensitive: true,\n },\n },\n ],\n },\n settings: {\n 'import/resolver': {\n typescript: {\n alwaysTryTypes: true,\n project: [ tsconfigRootDir ],\n },\n node: {},\n },\n },\n});\n", "import tsdocPlugin from 'eslint-plugin-tsdoc';\nimport * as globals from 'globals';\nimport { plugin, configs, config } from 'typescript-eslint';\n\nexport const jsConfigs = config({\n extends: [ configs.disableTypeChecked ],\n files: [ '**/*.{mjs,js,cjs}' ],\n plugins: {\n '@typescript-eslint': plugin,\n tsdoc: tsdocPlugin,\n },\n languageOptions: {\n globals: {\n ...globals.commonjs,\n ...globals.node,\n console: 'readonly', // TODO: why is this not in globals?\n },\n sourceType: 'commonjs',\n },\n rules: {\n '@typescript-eslint/no-require-imports': 'off',\n '@typescript-eslint/explicit-module-boundary-types': 'off',\n 'tsdoc/syntax': 'off',\n },\n});\n", "/* eslint-disable import/no-named-as-default-member */\n\nimport eslint from '@eslint/js';\nimport tslint from 'typescript-eslint';\n\nexport const baseExtends = tslint.config(eslint.configs.recommended, tslint.configs.stylisticTypeChecked, tslint.configs.strict);\n"],
5
+ "mappings": "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",
6
+ "names": ["tsdocPlugin", "globals", "plugin", "config"]
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexim/eslint-config",
3
- "version": "2.0.1",
3
+ "version": "2.1.1",
4
4
  "description": "Base Eslint configuration for Nexim projects.",
5
5
  "keywords": [
6
6
  "eslint",
@@ -56,24 +56,24 @@
56
56
  "watch": "wireit"
57
57
  },
58
58
  "dependencies": {
59
- "@eslint/compat": "^1.2.8",
60
- "@eslint/js": "^9.25.0",
61
- "@stylistic/eslint-plugin": "^4.2.0",
62
- "@typescript-eslint/parser": "^8.30.1",
63
- "eslint": "^9.25.0",
64
- "eslint-import-resolver-typescript": "^4.3.3",
65
- "eslint-plugin-import": "^2.31.0",
59
+ "@eslint/compat": "^1.3.2",
60
+ "@eslint/js": "^9.33.0",
61
+ "@stylistic/eslint-plugin": "^5.2.3",
62
+ "@typescript-eslint/parser": "^8.39.1",
63
+ "eslint": "^9.33.0",
64
+ "eslint-import-resolver-typescript": "^4.4.4",
65
+ "eslint-plugin-import": "^2.32.0",
66
66
  "eslint-plugin-tsdoc": "^0.4.0",
67
- "globals": "^16.0.0",
68
- "typescript-eslint": "^8.30.1"
67
+ "globals": "^16.3.0",
68
+ "typescript-eslint": "^8.39.1"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@alwatr/nano-build": "^5.5.3",
72
72
  "@alwatr/type-helper": "^5.4.1",
73
73
  "@nexim/typescript-config": "^2.0.1",
74
74
  "@types/eslint": "^9.6.1",
75
- "@types/node": "^22.14.1",
76
- "typescript": "^5.8.3",
75
+ "@types/node": "^24.2.1",
76
+ "typescript": "^5.9.2",
77
77
  "wireit": "^0.14.12"
78
78
  },
79
79
  "peerDependencies": {
@@ -125,5 +125,5 @@
125
125
  "service": true
126
126
  }
127
127
  },
128
- "gitHead": "f20da89af20ee0c17c96e1ea15c6dfd831717ee6"
128
+ "gitHead": "e67fe3938015270ff3bb71c5d76334faebc4c142"
129
129
  }