@xylabs/eslint-config-flat 3.11.4 → 3.11.6

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.
@@ -1,302 +1,2 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- // If the importer is in node compatibility mode or this is not an ESM
22
- // file that has been converted to a CommonJS file using a Babel-
23
- // compatible transform (i.e. "__esModule" has not been set), then set
24
- // "default" to the CommonJS "module.exports" for node compatibility.
25
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
- mod
27
- ));
28
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
-
30
- // src/index.ts
31
- var src_exports = {};
32
- __export(src_exports, {
33
- config: () => config
34
- });
35
- module.exports = __toCommonJS(src_exports);
36
-
37
- // src/prettier/index.ts
38
- var import_eslint_plugin_prettier = __toESM(require("eslint-plugin-prettier"), 1);
39
- var prettierConfig = {
40
- ignores: [".yarn/**", "jest.config.cjs", "**/dist/**", "dist", "build/**", "node_modules/**"],
41
- files: ["**/*.ts", "**/*.d.ts", "**/*.tsx", "**/*.d.tsx", "**/*.js", "**/*.d.js", "**/*.jsx", "**/*.d.jsx", "*.mjs", "*.d.mjs", "*.d.cjs"],
42
- plugins: { prettier: import_eslint_plugin_prettier.default },
43
- rules: {
44
- ...(import_eslint_plugin_prettier.default.configs?.recommended).rules,
45
- "prettier/prettier": [
46
- "warn",
47
- {
48
- bracketSpacing: true,
49
- endOfLine: "lf",
50
- experimentalTernaries: true,
51
- printWidth: 150,
52
- semi: false,
53
- singleQuote: true,
54
- tabWidth: 2,
55
- trailingComma: "all",
56
- useTabs: false
57
- }
58
- ]
59
- }
60
- };
61
-
62
- // src/rules/index.ts
63
- var rulesConfig = {
64
- ignores: [".yarn/**", "jest.config.cjs", "**/dist/**", "dist", "build/**", "node_modules/**"],
65
- rules: {
66
- complexity: ["error", 18],
67
- "max-depth": ["error", 6],
68
- "max-lines": [
69
- "error",
70
- {
71
- max: 512,
72
- skipBlankLines: true
73
- }
74
- ],
75
- "max-nested-callbacks": ["error", 6],
76
- "max-statements": ["error", 32],
77
- "no-restricted-imports": [
78
- "warn",
79
- {
80
- paths: [
81
- "lodash",
82
- "react-player",
83
- "filepond",
84
- "aos",
85
- "react-icons",
86
- ".",
87
- "..",
88
- "../..",
89
- "../../..",
90
- "../../../..",
91
- "../../../../..",
92
- "../../../../../..",
93
- "../../../../../../.."
94
- ]
95
- }
96
- ],
97
- //'no-secrets/no-secrets': ['off'],
98
- "no-tabs": ["error"],
99
- "no-unused-vars": "off",
100
- "no-useless-escape": "off",
101
- quotes: [2, "single", "avoid-escape"],
102
- "require-await": "error",
103
- semi: ["warn", "never"]
104
- //'sort-keys-fix/sort-keys-fix': 'warn',
105
- }
106
- };
107
-
108
- // src/typescript/index.ts
109
- var import_eslint_plugin = __toESM(require("@typescript-eslint/eslint-plugin"), 1);
110
- var import_parser = __toESM(require("@typescript-eslint/parser"), 1);
111
- var import_eslint_plugin_import = __toESM(require("eslint-plugin-import"), 1);
112
- var import_eslint_plugin_deprecation = __toESM(require("eslint-plugin-deprecation"), 1);
113
- var typescriptConfig = {
114
- ignores: [".yarn/**", "jest.config.cjs", "**/dist/**", "dist", "build/**", "node_modules/**"],
115
- files: ["**/*.ts", "**/*.d.ts", "**/*.tsx", "**/*.d.tsx", "**/*.js", "**/*.d.js", "**/*.jsx", "**/*.d.jsx"],
116
- languageOptions: {
117
- parser: import_parser.default,
118
- parserOptions: {
119
- ecmaFeatures: { modules: true },
120
- ecmaVersion: "latest",
121
- project: "./tsconfig-eslint.json"
122
- }
123
- },
124
- plugins: {
125
- "@typescript-eslint": import_eslint_plugin.default,
126
- deprecation: import_eslint_plugin_deprecation.default,
127
- import: import_eslint_plugin_import.default
128
- },
129
- settings: {
130
- "import/resolver": {
131
- typescript: {
132
- project: "./tsconfig-eslint.json"
133
- }
134
- }
135
- },
136
- rules: {
137
- ...import_eslint_plugin.default.configs.recommended.rules,
138
- ...import_eslint_plugin_import.default.configs.recommended.rules,
139
- "@typescript-eslint/explicit-member-accessibility": ["warn", { accessibility: "no-public" }],
140
- "@typescript-eslint/explicit-module-boundary-types": "off",
141
- "@typescript-eslint/member-delimiter-style": [
142
- "error",
143
- {
144
- multiline: {
145
- delimiter: "none",
146
- requireLast: true
147
- },
148
- singleline: {
149
- delimiter: "semi",
150
- requireLast: false
151
- }
152
- }
153
- ],
154
- "@typescript-eslint/member-ordering": [
155
- "warn",
156
- {
157
- default: {
158
- memberTypes: [
159
- "signature",
160
- "call-signature",
161
- "public-static-field",
162
- "protected-static-field",
163
- "private-static-field",
164
- "public-decorated-field",
165
- "protected-decorated-field",
166
- "private-decorated-field",
167
- "public-instance-field",
168
- "protected-instance-field",
169
- "private-instance-field",
170
- "public-abstract-field",
171
- "protected-abstract-field",
172
- "public-field",
173
- "protected-field",
174
- "private-field",
175
- "static-field",
176
- "instance-field",
177
- "abstract-field",
178
- "decorated-field",
179
- "field",
180
- "public-constructor",
181
- "protected-constructor",
182
- "private-constructor",
183
- "constructor",
184
- ["public-static-get", "public-static-set"],
185
- ["protected-static-get", "protected-static-set"],
186
- ["private-static-get", "private-static-set"],
187
- ["public-decorated-get", "public-decorated-set"],
188
- ["protected-decorated-get", "protected-decorated-set"],
189
- ["private-decorated-get", "private-decorated-set"],
190
- ["public-instance-get", "public-instance-set"],
191
- ["protected-instance-get", "protected-instance-set"],
192
- ["private-instance-get", "private-instance-set"],
193
- ["public-abstract-get", "public-abstract-set"],
194
- ["protected-abstract-get", "protected-abstract-set"],
195
- ["public-get", "public-set"],
196
- ["protected-get", "protected-set"],
197
- ["private-get", "private-set"],
198
- ["static-get", "static-set"],
199
- ["instance-get", "instance-set"],
200
- ["abstract-get", "abstract-set"],
201
- ["decorated-get", "decorated-set"],
202
- "get",
203
- "set",
204
- "public-static-method",
205
- "protected-static-method",
206
- "private-static-method",
207
- "public-decorated-method",
208
- "protected-decorated-method",
209
- "private-decorated-method",
210
- "public-instance-method",
211
- "protected-instance-method",
212
- "private-instance-method",
213
- "public-abstract-method",
214
- "protected-abstract-method",
215
- "public-method",
216
- "protected-method",
217
- "private-method",
218
- "static-method",
219
- "instance-method",
220
- "abstract-method",
221
- "decorated-method",
222
- "method"
223
- ],
224
- order: "alphabetically"
225
- }
226
- }
227
- ],
228
- "@typescript-eslint/no-floating-promises": "error",
229
- "@typescript-eslint/no-misused-promises": "error",
230
- "@typescript-eslint/no-unused-vars": [
231
- "warn",
232
- {
233
- argsIgnorePattern: "^_"
234
- }
235
- ],
236
- "@typescript-eslint/semi": ["warn", "never"],
237
- "import/default": ["off"],
238
- "import/named": ["off"],
239
- "import/namespace": ["off"],
240
- "import/no-absolute-path": ["warn"],
241
- "import/no-cycle": [
242
- "warn",
243
- {
244
- maxDepth: 2
245
- }
246
- ],
247
- "import/no-default-export": ["warn"],
248
- "import/no-deprecated": ["warn"],
249
- "import/no-internal-modules": ["warn"],
250
- "import/no-named-as-default-member": ["off"],
251
- "import/no-named-as-default": ["off"],
252
- "import/no-restricted-paths": ["warn"],
253
- "import/no-self-import": ["warn"],
254
- "import/no-useless-path-segments": ["warn"]
255
- }
256
- };
257
-
258
- // src/unicorn/index.ts
259
- var import_eslint_plugin_unicorn = __toESM(require("eslint-plugin-unicorn"), 1);
260
- var unicornConfig = {
261
- ignores: [".yarn/**", "jest.config.cjs", "**/dist/**", "dist", "build/**", "node_modules/**"],
262
- plugins: { unicorn: import_eslint_plugin_unicorn.default },
263
- rules: {
264
- ...import_eslint_plugin_unicorn.default.configs["flat/recommended"].rules,
265
- "unicorn/catch-error-name": ["off"],
266
- "unicorn/consistent-function-scoping": ["off"],
267
- "unicorn/filename-case": ["off"],
268
- "unicorn/new-for-builtins": ["off"],
269
- "unicorn/no-array-callback-reference": ["off"],
270
- "unicorn/no-await-expression-member": ["off"],
271
- "unicorn/no-nested-ternary": ["off"],
272
- "unicorn/no-null": ["off"],
273
- "unicorn/number-literal-case": ["off"],
274
- "unicorn/prefer-module": ["off"],
275
- "unicorn/prefer-top-level-await": ["off"],
276
- "unicorn/prevent-abbreviations": ["off"]
277
- }
278
- };
279
-
280
- // src/workspaces/index.ts
281
- var import_eslint_plugin_workspaces = __toESM(require("eslint-plugin-workspaces"), 1);
282
- var workspacesConfig = {
283
- ignores: [".yarn/**", "jest.config.cjs", "**/dist/**", "build/**", "node_modules/**"],
284
- plugins: { workspaces: import_eslint_plugin_workspaces.default },
285
- rules: {
286
- ...import_eslint_plugin_workspaces.default.configs.recommended.rules,
287
- "workspaces/no-relative-imports": ["off"],
288
- "workspaces/require-dependency": ["off"]
289
- }
290
- };
291
-
292
- // src/index.ts
293
- var config = [
294
- //markdownConfig,
295
- typescriptConfig,
296
- //jsonConfig,
297
- unicornConfig,
298
- workspacesConfig,
299
- rulesConfig,
300
- prettierConfig
301
- ];
1
+ "use strict";var x=Object.create;var s=Object.defineProperty;var j=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var C=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var k=(e,t)=>{for(var r in t)s(e,r,{get:t[r],enumerable:!0})},m=(e,t,r,l)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of w(t))!L.call(e,o)&&o!==r&&s(e,o,{get:()=>t[o],enumerable:!(l=j(t,o))||l.enumerable});return e};var i=(e,t,r)=>(r=e!=null?x(C(e)):{},m(t||!e||!e.__esModule?s(r,"default",{value:e,enumerable:!0}):r,e)),F=e=>m(s({},"__esModule",{value:!0}),e);var q={};k(q,{config:()=>_});module.exports=F(q);var n=i(require("eslint-plugin-prettier"),1),f={ignores:[".yarn/**","jest.config.cjs","**/dist/**","dist","build/**","node_modules/**"],files:["**/*.ts","**/*.d.ts","**/*.tsx","**/*.d.tsx","**/*.js","**/*.d.js","**/*.jsx","**/*.d.jsx","*.mjs","*.d.mjs","*.d.cjs"],plugins:{prettier:n.default},rules:{...(n.default.configs?.recommended).rules,"prettier/prettier":["warn",{bracketSpacing:!0,endOfLine:"lf",experimentalTernaries:!0,printWidth:150,semi:!1,singleQuote:!0,tabWidth:2,trailingComma:"all",useTabs:!1}]}};var u={ignores:[".yarn/**","jest.config.cjs","**/dist/**","dist","build/**","node_modules/**"],rules:{complexity:["error",18],"max-depth":["error",6],"max-lines":["error",{max:512,skipBlankLines:!0}],"max-nested-callbacks":["error",6],"max-statements":["error",32],"no-restricted-imports":["warn",{paths:["lodash","react-player","filepond","aos","react-icons",".","..","../..","../../..","../../../..","../../../../..","../../../../../..","../../../../../../.."]}],"no-tabs":["error"],"no-unused-vars":"off","no-useless-escape":"off",quotes:[2,"single","avoid-escape"],"require-await":"error",semi:["warn","never"]}};var a=i(require("@typescript-eslint/eslint-plugin"),1),g=i(require("@typescript-eslint/parser"),1),c=i(require("eslint-plugin-import"),1),b=i(require("eslint-plugin-deprecation"),1),y={ignores:[".yarn/**","jest.config.cjs","**/dist/**","dist","build/**","node_modules/**"],files:["**/*.ts","**/*.d.ts","**/*.tsx","**/*.d.tsx","**/*.js","**/*.d.js","**/*.jsx","**/*.d.jsx"],languageOptions:{parser:g.default,parserOptions:{ecmaFeatures:{modules:!0},ecmaVersion:"latest",project:"./tsconfig-eslint.json"}},plugins:{"@typescript-eslint":a.default,deprecation:b.default,import:c.default},settings:{"import/resolver":{typescript:{project:"./tsconfig-eslint.json"}}},rules:{...a.default.configs.recommended.rules,...c.default.configs.recommended.rules,"@typescript-eslint/explicit-member-accessibility":["warn",{accessibility:"no-public"}],"@typescript-eslint/explicit-module-boundary-types":"off","@typescript-eslint/member-delimiter-style":["error",{multiline:{delimiter:"none",requireLast:!0},singleline:{delimiter:"semi",requireLast:!1}}],"@typescript-eslint/member-ordering":["warn",{default:{memberTypes:["signature","call-signature","public-static-field","protected-static-field","private-static-field","public-decorated-field","protected-decorated-field","private-decorated-field","public-instance-field","protected-instance-field","private-instance-field","public-abstract-field","protected-abstract-field","public-field","protected-field","private-field","static-field","instance-field","abstract-field","decorated-field","field","public-constructor","protected-constructor","private-constructor","constructor",["public-static-get","public-static-set"],["protected-static-get","protected-static-set"],["private-static-get","private-static-set"],["public-decorated-get","public-decorated-set"],["protected-decorated-get","protected-decorated-set"],["private-decorated-get","private-decorated-set"],["public-instance-get","public-instance-set"],["protected-instance-get","protected-instance-set"],["private-instance-get","private-instance-set"],["public-abstract-get","public-abstract-set"],["protected-abstract-get","protected-abstract-set"],["public-get","public-set"],["protected-get","protected-set"],["private-get","private-set"],["static-get","static-set"],["instance-get","instance-set"],["abstract-get","abstract-set"],["decorated-get","decorated-set"],"get","set","public-static-method","protected-static-method","private-static-method","public-decorated-method","protected-decorated-method","private-decorated-method","public-instance-method","protected-instance-method","private-instance-method","public-abstract-method","protected-abstract-method","public-method","protected-method","private-method","static-method","instance-method","abstract-method","decorated-method","method"],order:"alphabetically"}}],"@typescript-eslint/no-floating-promises":"error","@typescript-eslint/no-misused-promises":"error","@typescript-eslint/no-unused-vars":["warn",{argsIgnorePattern:"^_"}],"@typescript-eslint/semi":["warn","never"],"import/default":["off"],"import/named":["off"],"import/namespace":["off"],"import/no-absolute-path":["warn"],"import/no-cycle":["warn",{maxDepth:2}],"import/no-default-export":["warn"],"import/no-deprecated":["warn"],"import/no-internal-modules":["warn"],"import/no-named-as-default-member":["off"],"import/no-named-as-default":["off"],"import/no-restricted-paths":["warn"],"import/no-self-import":["warn"],"import/no-useless-path-segments":["warn"]}};var p=i(require("eslint-plugin-unicorn"),1),h={ignores:[".yarn/**","jest.config.cjs","**/dist/**","dist","build/**","node_modules/**"],plugins:{unicorn:p.default},rules:{...p.default.configs["flat/recommended"].rules,"unicorn/catch-error-name":["off"],"unicorn/consistent-function-scoping":["off"],"unicorn/filename-case":["off"],"unicorn/new-for-builtins":["off"],"unicorn/no-array-callback-reference":["off"],"unicorn/no-await-expression-member":["off"],"unicorn/no-nested-ternary":["off"],"unicorn/no-null":["off"],"unicorn/number-literal-case":["off"],"unicorn/prefer-module":["off"],"unicorn/prefer-top-level-await":["off"],"unicorn/prevent-abbreviations":["off"]}};var d=i(require("eslint-plugin-workspaces"),1),v={ignores:[".yarn/**","jest.config.cjs","**/dist/**","dist","build/**","node_modules/**"],plugins:{workspaces:d.default},rules:{...d.default.configs.recommended.rules,"workspaces/no-relative-imports":["off"],"workspaces/require-dependency":["off"]}};var _=[y,h,v,u,f];
302
2
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts","../../src/prettier/index.ts","../../src/rules/index.ts","../../src/typescript/index.ts","../../src/unicorn/index.ts","../../src/workspaces/index.ts"],"sourcesContent":["import { Linter } from 'eslint'\n\n//import { jsonConfig } from './json/index.js'\n//import { markdownConfig } from './markdown/index.js'\nimport { prettierConfig } from './prettier/index.js'\nimport { rulesConfig } from './rules/index.js'\nimport { typescriptConfig } from './typescript/index.js'\nimport { unicornConfig } from './unicorn/index.js'\nimport { workspacesConfig } from './workspaces/index.js'\n\nexport const config: Linter.FlatConfig[] = [\n //markdownConfig,\n typescriptConfig,\n //jsonConfig,\n unicornConfig,\n workspacesConfig,\n rulesConfig,\n prettierConfig,\n]\n","import { Linter } from 'eslint'\nimport prettier from 'eslint-plugin-prettier'\n\nexport const prettierConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n files: ['**/*.ts', '**/*.d.ts', '**/*.tsx', '**/*.d.tsx', '**/*.js', '**/*.d.js', '**/*.jsx', '**/*.d.jsx', '*.mjs', '*.d.mjs', '*.d.cjs'],\n plugins: { prettier },\n rules: {\n ...(prettier.configs?.recommended as any).rules,\n 'prettier/prettier': [\n 'warn',\n {\n bracketSpacing: true,\n endOfLine: 'lf',\n experimentalTernaries: true,\n printWidth: 150,\n semi: false,\n singleQuote: true,\n tabWidth: 2,\n trailingComma: 'all',\n useTabs: false,\n },\n ],\n },\n}\n","import { Linter } from 'eslint'\n\nexport const rulesConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n rules: {\n complexity: ['error', 18],\n 'max-depth': ['error', 6],\n 'max-lines': [\n 'error',\n {\n max: 512,\n skipBlankLines: true,\n },\n ],\n 'max-nested-callbacks': ['error', 6],\n 'max-statements': ['error', 32],\n 'no-restricted-imports': [\n 'warn',\n {\n paths: [\n 'lodash',\n 'react-player',\n 'filepond',\n 'aos',\n 'react-icons',\n '.',\n '..',\n '../..',\n '../../..',\n '../../../..',\n '../../../../..',\n '../../../../../..',\n '../../../../../../..',\n ],\n },\n ],\n //'no-secrets/no-secrets': ['off'],\n 'no-tabs': ['error'],\n 'no-unused-vars': 'off',\n 'no-useless-escape': 'off',\n quotes: [2, 'single', 'avoid-escape'],\n 'require-await': 'error',\n semi: ['warn', 'never'],\n //'sort-keys-fix/sort-keys-fix': 'warn',\n },\n}\n","import tsPlugin from '@typescript-eslint/eslint-plugin'\nimport tsParser from '@typescript-eslint/parser'\nimport importPlugin from 'eslint-plugin-import'\nimport { Linter } from 'eslint'\nimport deprecationPlugin from 'eslint-plugin-deprecation'\n\nexport const typescriptConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n files: ['**/*.ts', '**/*.d.ts', '**/*.tsx', '**/*.d.tsx', '**/*.js', '**/*.d.js', '**/*.jsx', '**/*.d.jsx'],\n languageOptions: {\n parser: tsParser,\n parserOptions: {\n ecmaFeatures: { modules: true },\n ecmaVersion: 'latest',\n project: './tsconfig-eslint.json',\n },\n },\n plugins: {\n '@typescript-eslint': tsPlugin as any,\n deprecation: deprecationPlugin as any,\n import: importPlugin,\n },\n settings: {\n 'import/resolver': {\n typescript: {\n project: './tsconfig-eslint.json',\n },\n },\n },\n rules: {\n ...tsPlugin.configs.recommended.rules,\n ...importPlugin.configs.recommended.rules,\n '@typescript-eslint/explicit-member-accessibility': ['warn', { accessibility: 'no-public' }],\n '@typescript-eslint/explicit-module-boundary-types': 'off',\n '@typescript-eslint/member-delimiter-style': [\n 'error',\n {\n multiline: {\n delimiter: 'none',\n requireLast: true,\n },\n singleline: {\n delimiter: 'semi',\n requireLast: false,\n },\n },\n ],\n '@typescript-eslint/member-ordering': [\n 'warn',\n {\n default: {\n memberTypes: [\n 'signature',\n 'call-signature',\n 'public-static-field',\n 'protected-static-field',\n 'private-static-field',\n 'public-decorated-field',\n 'protected-decorated-field',\n 'private-decorated-field',\n 'public-instance-field',\n 'protected-instance-field',\n 'private-instance-field',\n 'public-abstract-field',\n 'protected-abstract-field',\n 'public-field',\n 'protected-field',\n 'private-field',\n 'static-field',\n 'instance-field',\n 'abstract-field',\n 'decorated-field',\n 'field',\n 'public-constructor',\n 'protected-constructor',\n 'private-constructor',\n 'constructor',\n ['public-static-get', 'public-static-set'],\n ['protected-static-get', 'protected-static-set'],\n ['private-static-get', 'private-static-set'],\n ['public-decorated-get', 'public-decorated-set'],\n ['protected-decorated-get', 'protected-decorated-set'],\n ['private-decorated-get', 'private-decorated-set'],\n ['public-instance-get', 'public-instance-set'],\n ['protected-instance-get', 'protected-instance-set'],\n ['private-instance-get', 'private-instance-set'],\n ['public-abstract-get', 'public-abstract-set'],\n ['protected-abstract-get', 'protected-abstract-set'],\n ['public-get', 'public-set'],\n ['protected-get', 'protected-set'],\n ['private-get', 'private-set'],\n ['static-get', 'static-set'],\n ['instance-get', 'instance-set'],\n ['abstract-get', 'abstract-set'],\n ['decorated-get', 'decorated-set'],\n 'get',\n 'set',\n 'public-static-method',\n 'protected-static-method',\n 'private-static-method',\n 'public-decorated-method',\n 'protected-decorated-method',\n 'private-decorated-method',\n 'public-instance-method',\n 'protected-instance-method',\n 'private-instance-method',\n 'public-abstract-method',\n 'protected-abstract-method',\n 'public-method',\n 'protected-method',\n 'private-method',\n 'static-method',\n 'instance-method',\n 'abstract-method',\n 'decorated-method',\n 'method',\n ],\n order: 'alphabetically',\n },\n },\n ],\n '@typescript-eslint/no-floating-promises': 'error',\n '@typescript-eslint/no-misused-promises': 'error',\n '@typescript-eslint/no-unused-vars': [\n 'warn',\n {\n argsIgnorePattern: '^_',\n },\n ],\n '@typescript-eslint/semi': ['warn', 'never'],\n 'import/default': ['off'],\n 'import/named': ['off'],\n 'import/namespace': ['off'],\n 'import/no-absolute-path': ['warn'],\n 'import/no-cycle': [\n 'warn',\n {\n maxDepth: 2,\n },\n ],\n 'import/no-default-export': ['warn'],\n 'import/no-deprecated': ['warn'],\n 'import/no-internal-modules': ['warn'],\n 'import/no-named-as-default-member': ['off'],\n 'import/no-named-as-default': ['off'],\n 'import/no-restricted-paths': ['warn'],\n 'import/no-self-import': ['warn'],\n 'import/no-useless-path-segments': ['warn'],\n },\n}\n","import unicorn from 'eslint-plugin-unicorn'\nimport { Linter } from 'eslint'\n\nexport const unicornConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n plugins: { unicorn },\n rules: {\n ...unicorn.configs['flat/recommended'].rules,\n 'unicorn/catch-error-name': ['off'],\n 'unicorn/consistent-function-scoping': ['off'],\n 'unicorn/filename-case': ['off'],\n 'unicorn/new-for-builtins': ['off'],\n 'unicorn/no-array-callback-reference': ['off'],\n 'unicorn/no-await-expression-member': ['off'],\n 'unicorn/no-nested-ternary': ['off'],\n 'unicorn/no-null': ['off'],\n 'unicorn/number-literal-case': ['off'],\n 'unicorn/prefer-module': ['off'],\n 'unicorn/prefer-top-level-await': ['off'],\n 'unicorn/prevent-abbreviations': ['off'],\n },\n}\n","import { Linter } from 'eslint'\nimport workspaces from 'eslint-plugin-workspaces'\n\nexport const workspacesConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'build/**', 'node_modules/**'],\n plugins: { workspaces },\n rules: {\n ...workspaces.configs.recommended.rules,\n 'workspaces/no-relative-imports': ['off'],\n 'workspaces/require-dependency': ['off'],\n },\n}\n"],"mappings":"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","names":["prettier","tsParser","tsPlugin","deprecationPlugin","importPlugin","unicorn","workspaces"]}
1
+ {"version":3,"sources":["../../src/index.ts","../../src/prettier/index.ts","../../src/rules/index.ts","../../src/typescript/index.ts","../../src/unicorn/index.ts","../../src/workspaces/index.ts"],"sourcesContent":["import { Linter } from 'eslint'\n\n//import { jsonConfig } from './json/index.js'\n//import { markdownConfig } from './markdown/index.js'\nimport { prettierConfig } from './prettier/index.js'\nimport { rulesConfig } from './rules/index.js'\nimport { typescriptConfig } from './typescript/index.js'\nimport { unicornConfig } from './unicorn/index.js'\nimport { workspacesConfig } from './workspaces/index.js'\n\nexport const config: Linter.FlatConfig[] = [\n //markdownConfig,\n typescriptConfig,\n //jsonConfig,\n unicornConfig,\n workspacesConfig,\n rulesConfig,\n prettierConfig,\n]\n","import { Linter } from 'eslint'\nimport prettier from 'eslint-plugin-prettier'\n\nexport const prettierConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n files: ['**/*.ts', '**/*.d.ts', '**/*.tsx', '**/*.d.tsx', '**/*.js', '**/*.d.js', '**/*.jsx', '**/*.d.jsx', '*.mjs', '*.d.mjs', '*.d.cjs'],\n plugins: { prettier },\n rules: {\n ...(prettier.configs?.recommended as any).rules,\n 'prettier/prettier': [\n 'warn',\n {\n bracketSpacing: true,\n endOfLine: 'lf',\n experimentalTernaries: true,\n printWidth: 150,\n semi: false,\n singleQuote: true,\n tabWidth: 2,\n trailingComma: 'all',\n useTabs: false,\n },\n ],\n },\n}\n","import { Linter } from 'eslint'\n\nexport const rulesConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n rules: {\n complexity: ['error', 18],\n 'max-depth': ['error', 6],\n 'max-lines': [\n 'error',\n {\n max: 512,\n skipBlankLines: true,\n },\n ],\n 'max-nested-callbacks': ['error', 6],\n 'max-statements': ['error', 32],\n 'no-restricted-imports': [\n 'warn',\n {\n paths: [\n 'lodash',\n 'react-player',\n 'filepond',\n 'aos',\n 'react-icons',\n '.',\n '..',\n '../..',\n '../../..',\n '../../../..',\n '../../../../..',\n '../../../../../..',\n '../../../../../../..',\n ],\n },\n ],\n //'no-secrets/no-secrets': ['off'],\n 'no-tabs': ['error'],\n 'no-unused-vars': 'off',\n 'no-useless-escape': 'off',\n quotes: [2, 'single', 'avoid-escape'],\n 'require-await': 'error',\n semi: ['warn', 'never'],\n //'sort-keys-fix/sort-keys-fix': 'warn',\n },\n}\n","import tsPlugin from '@typescript-eslint/eslint-plugin'\nimport tsParser from '@typescript-eslint/parser'\nimport importPlugin from 'eslint-plugin-import'\nimport { Linter } from 'eslint'\nimport deprecationPlugin from 'eslint-plugin-deprecation'\n\nexport const typescriptConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n files: ['**/*.ts', '**/*.d.ts', '**/*.tsx', '**/*.d.tsx', '**/*.js', '**/*.d.js', '**/*.jsx', '**/*.d.jsx'],\n languageOptions: {\n parser: tsParser,\n parserOptions: {\n ecmaFeatures: { modules: true },\n ecmaVersion: 'latest',\n project: './tsconfig-eslint.json',\n },\n },\n plugins: {\n '@typescript-eslint': tsPlugin as any,\n deprecation: deprecationPlugin as any,\n import: importPlugin,\n },\n settings: {\n 'import/resolver': {\n typescript: {\n project: './tsconfig-eslint.json',\n },\n },\n },\n rules: {\n ...tsPlugin.configs.recommended.rules,\n ...importPlugin.configs.recommended.rules,\n '@typescript-eslint/explicit-member-accessibility': ['warn', { accessibility: 'no-public' }],\n '@typescript-eslint/explicit-module-boundary-types': 'off',\n '@typescript-eslint/member-delimiter-style': [\n 'error',\n {\n multiline: {\n delimiter: 'none',\n requireLast: true,\n },\n singleline: {\n delimiter: 'semi',\n requireLast: false,\n },\n },\n ],\n '@typescript-eslint/member-ordering': [\n 'warn',\n {\n default: {\n memberTypes: [\n 'signature',\n 'call-signature',\n 'public-static-field',\n 'protected-static-field',\n 'private-static-field',\n 'public-decorated-field',\n 'protected-decorated-field',\n 'private-decorated-field',\n 'public-instance-field',\n 'protected-instance-field',\n 'private-instance-field',\n 'public-abstract-field',\n 'protected-abstract-field',\n 'public-field',\n 'protected-field',\n 'private-field',\n 'static-field',\n 'instance-field',\n 'abstract-field',\n 'decorated-field',\n 'field',\n 'public-constructor',\n 'protected-constructor',\n 'private-constructor',\n 'constructor',\n ['public-static-get', 'public-static-set'],\n ['protected-static-get', 'protected-static-set'],\n ['private-static-get', 'private-static-set'],\n ['public-decorated-get', 'public-decorated-set'],\n ['protected-decorated-get', 'protected-decorated-set'],\n ['private-decorated-get', 'private-decorated-set'],\n ['public-instance-get', 'public-instance-set'],\n ['protected-instance-get', 'protected-instance-set'],\n ['private-instance-get', 'private-instance-set'],\n ['public-abstract-get', 'public-abstract-set'],\n ['protected-abstract-get', 'protected-abstract-set'],\n ['public-get', 'public-set'],\n ['protected-get', 'protected-set'],\n ['private-get', 'private-set'],\n ['static-get', 'static-set'],\n ['instance-get', 'instance-set'],\n ['abstract-get', 'abstract-set'],\n ['decorated-get', 'decorated-set'],\n 'get',\n 'set',\n 'public-static-method',\n 'protected-static-method',\n 'private-static-method',\n 'public-decorated-method',\n 'protected-decorated-method',\n 'private-decorated-method',\n 'public-instance-method',\n 'protected-instance-method',\n 'private-instance-method',\n 'public-abstract-method',\n 'protected-abstract-method',\n 'public-method',\n 'protected-method',\n 'private-method',\n 'static-method',\n 'instance-method',\n 'abstract-method',\n 'decorated-method',\n 'method',\n ],\n order: 'alphabetically',\n },\n },\n ],\n '@typescript-eslint/no-floating-promises': 'error',\n '@typescript-eslint/no-misused-promises': 'error',\n '@typescript-eslint/no-unused-vars': [\n 'warn',\n {\n argsIgnorePattern: '^_',\n },\n ],\n '@typescript-eslint/semi': ['warn', 'never'],\n 'import/default': ['off'],\n 'import/named': ['off'],\n 'import/namespace': ['off'],\n 'import/no-absolute-path': ['warn'],\n 'import/no-cycle': [\n 'warn',\n {\n maxDepth: 2,\n },\n ],\n 'import/no-default-export': ['warn'],\n 'import/no-deprecated': ['warn'],\n 'import/no-internal-modules': ['warn'],\n 'import/no-named-as-default-member': ['off'],\n 'import/no-named-as-default': ['off'],\n 'import/no-restricted-paths': ['warn'],\n 'import/no-self-import': ['warn'],\n 'import/no-useless-path-segments': ['warn'],\n },\n}\n","import unicorn from 'eslint-plugin-unicorn'\nimport { Linter } from 'eslint'\n\nexport const unicornConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n plugins: { unicorn },\n rules: {\n ...unicorn.configs['flat/recommended'].rules,\n 'unicorn/catch-error-name': ['off'],\n 'unicorn/consistent-function-scoping': ['off'],\n 'unicorn/filename-case': ['off'],\n 'unicorn/new-for-builtins': ['off'],\n 'unicorn/no-array-callback-reference': ['off'],\n 'unicorn/no-await-expression-member': ['off'],\n 'unicorn/no-nested-ternary': ['off'],\n 'unicorn/no-null': ['off'],\n 'unicorn/number-literal-case': ['off'],\n 'unicorn/prefer-module': ['off'],\n 'unicorn/prefer-top-level-await': ['off'],\n 'unicorn/prevent-abbreviations': ['off'],\n },\n}\n","import { Linter } from 'eslint'\nimport workspaces from 'eslint-plugin-workspaces'\n\nexport const workspacesConfig: Linter.FlatConfig = {\n ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],\n plugins: { workspaces },\n rules: {\n ...workspaces.configs.recommended.rules,\n 'workspaces/no-relative-imports': ['off'],\n 'workspaces/require-dependency': ['off'],\n },\n}\n"],"mappings":"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","names":["src_exports","__export","config","__toCommonJS","import_eslint_plugin_prettier","prettierConfig","prettier","rulesConfig","import_eslint_plugin","import_parser","import_eslint_plugin_import","import_eslint_plugin_deprecation","typescriptConfig","tsParser","tsPlugin","deprecationPlugin","importPlugin","import_eslint_plugin_unicorn","unicornConfig","unicorn","import_eslint_plugin_workspaces","workspacesConfig","workspaces","config","typescriptConfig","unicornConfig","workspacesConfig","rulesConfig","prettierConfig"]}