|
| 1 | +import { hasDependency, hasDevDependency, pkg } from "@anolilab/package-json-utils"; |
| 2 | +import type { Config } from "lint-staged"; |
| 3 | + |
| 4 | +import eslintConfig from "./groups/eslint"; |
| 5 | +import packageJsonConfig from "./groups/package-json"; |
| 6 | +import prettierConfig from "./groups/prettier"; |
| 7 | +import secretlintConfig from "./groups/secretlint"; |
| 8 | +import stylesheetsConfig from "./groups/stylesheets"; |
| 9 | +import testsConfig from "./groups/tests"; |
| 10 | +import typescriptConfig from "./groups/typescript"; |
| 11 | + |
| 12 | +type Groups = { |
| 13 | + configName: string; |
| 14 | + config: Config; |
| 15 | + dependencies: string[]; |
| 16 | +}[]; |
| 17 | + |
| 18 | +const groups: Groups = [ |
| 19 | + { |
| 20 | + configName: "eslint", |
| 21 | + config: eslintConfig, |
| 22 | + dependencies: ["eslint"], |
| 23 | + }, |
| 24 | + { |
| 25 | + configName: "package-json", |
| 26 | + config: packageJsonConfig, |
| 27 | + dependencies: [], |
| 28 | + }, |
| 29 | + { |
| 30 | + configName: "prettier", |
| 31 | + config: prettierConfig, |
| 32 | + dependencies: ["prettier", "pretty-quick"], |
| 33 | + }, |
| 34 | + { |
| 35 | + configName: "secretlint", |
| 36 | + config: secretlintConfig, |
| 37 | + dependencies: ["secretlint"], |
| 38 | + }, |
| 39 | + { |
| 40 | + configName: "stylesheets", |
| 41 | + config: stylesheetsConfig, |
| 42 | + dependencies: [], |
| 43 | + }, |
| 44 | + { |
| 45 | + configName: "tests", |
| 46 | + config: testsConfig, |
| 47 | + dependencies: ["vite", "jest"], |
| 48 | + }, |
| 49 | + { |
| 50 | + configName: "typescript", |
| 51 | + config: typescriptConfig, |
| 52 | + dependencies: ["typescript"], |
| 53 | + }, |
| 54 | +]; |
| 55 | + |
| 56 | +let anolilabEslintConfig: { [key: string]: { [key: string]: false | undefined } } = {}; |
| 57 | + |
| 58 | +if (pkg) { |
| 59 | + // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment,@typescript-eslint/no-unsafe-member-access |
| 60 | + anolilabEslintConfig = pkg?.["anolilab"]?.["lint-staged-config"]; |
| 61 | +} |
| 62 | + |
| 63 | +let loadedPlugins: Config = {}; |
| 64 | +const loadedPluginsNames: string[] = []; |
| 65 | + |
| 66 | +const possiblePlugins: { [rule: string]: { [packageName: string]: boolean } } = {}; |
| 67 | + |
| 68 | +groups.forEach((plugin) => { |
| 69 | + const { dependencies, config, configName } = plugin; |
| 70 | + |
| 71 | + if (anolilabEslintConfig?.["plugin"]?.[configName] !== false) { |
| 72 | + const foundDependencies = []; |
| 73 | + |
| 74 | + dependencies.forEach((dependency) => { |
| 75 | + if (hasDependency(dependency) || hasDevDependency(dependency)) { |
| 76 | + foundDependencies.push(dependency); |
| 77 | + } |
| 78 | + }); |
| 79 | + |
| 80 | + if (foundDependencies.length === dependencies.length) { |
| 81 | + loadedPlugins = { ...loadedPlugins, ...config }; |
| 82 | + loadedPluginsNames.push(configName); |
| 83 | + } else { |
| 84 | + possiblePlugins[configName] = {}; |
| 85 | + |
| 86 | + dependencies.forEach((dependency) => { |
| 87 | + (possiblePlugins[configName] as { [key: string]: boolean })[dependency] = hasDependency(dependency) || hasDevDependency(dependency); |
| 88 | + }); |
| 89 | + } |
| 90 | + } |
| 91 | +}); |
| 92 | + |
| 93 | +const loaded: Config = { ...loadedPlugins }; |
| 94 | + |
| 95 | +export { loaded as loadedPlugins, loadedPluginsNames, possiblePlugins }; |
0 commit comments