create-lik-app 1.2.3 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. package/README.md +1 -1
  2. package/dist/index.mjs +50 -50
  3. package/package.json +1 -1
  4. package/templates/template-react/eslint.config.mjs +35 -16
  5. package/templates/template-react/package.json +1 -1
  6. package/templates/template-react-tanstack-jotai/eslint.config.mjs +35 -16
  7. package/templates/template-react-tanstack-jotai/package.json +1 -1
  8. package/templates/template-react-tanstack-jotai-tailwindcss/.husky/commit-msg +6 -0
  9. package/templates/template-react-tanstack-jotai-tailwindcss/.husky/lintstagedrc.cjs +8 -0
  10. package/templates/template-react-tanstack-jotai-tailwindcss/.husky/pre-commit +10 -0
  11. package/templates/template-react-tanstack-jotai-tailwindcss/.prettierignore +13 -0
  12. package/templates/template-react-tanstack-jotai-tailwindcss/.vscode/extensions.json +5 -0
  13. package/templates/template-react-tanstack-jotai-tailwindcss/README.md +40 -0
  14. package/templates/template-react-tanstack-jotai-tailwindcss/_gitignore +27 -0
  15. package/templates/template-react-tanstack-jotai-tailwindcss/commitlint.config.mjs +28 -0
  16. package/templates/template-react-tanstack-jotai-tailwindcss/config/build/_base.ts +36 -0
  17. package/templates/template-react-tanstack-jotai-tailwindcss/config/build/development.ts +7 -0
  18. package/templates/template-react-tanstack-jotai-tailwindcss/config/build/production.ts +1 -0
  19. package/templates/template-react-tanstack-jotai-tailwindcss/config/build/test.ts +1 -0
  20. package/templates/template-react-tanstack-jotai-tailwindcss/env/.env +0 -0
  21. package/templates/template-react-tanstack-jotai-tailwindcss/env/.env.development +2 -0
  22. package/templates/template-react-tanstack-jotai-tailwindcss/env/.env.production +1 -0
  23. package/templates/template-react-tanstack-jotai-tailwindcss/eslint.config.mjs +63 -0
  24. package/templates/template-react-tanstack-jotai-tailwindcss/index.html +13 -0
  25. package/templates/template-react-tanstack-jotai-tailwindcss/package.json +50 -0
  26. package/templates/template-react-tanstack-jotai-tailwindcss/postcss.config.js +6 -0
  27. package/templates/template-react-tanstack-jotai-tailwindcss/prettier.config.mjs +11 -0
  28. package/templates/template-react-tanstack-jotai-tailwindcss/public/lic.svg +1263 -0
  29. package/templates/template-react-tanstack-jotai-tailwindcss/public/react.svg +1 -0
  30. package/templates/template-react-tanstack-jotai-tailwindcss/public/vite.svg +1 -0
  31. package/templates/template-react-tanstack-jotai-tailwindcss/src/assets/react.svg +1 -0
  32. package/templates/template-react-tanstack-jotai-tailwindcss/src/components/Lic/index.tsx +12 -0
  33. package/templates/template-react-tanstack-jotai-tailwindcss/src/main.tsx +21 -0
  34. package/templates/template-react-tanstack-jotai-tailwindcss/src/routeTree.gen.ts +145 -0
  35. package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/__root.tsx +11 -0
  36. package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout/about.tsx +6 -0
  37. package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout/index.tsx +6 -0
  38. package/templates/template-react-tanstack-jotai-tailwindcss/src/routes/_layout.tsx +23 -0
  39. package/templates/template-react-tanstack-jotai-tailwindcss/src/store/index.ts +1 -0
  40. package/templates/template-react-tanstack-jotai-tailwindcss/src/store/module/favorite.ts +5 -0
  41. package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/animation.css +8 -0
  42. package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/main.css +11 -0
  43. package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/tailwind.css +30 -0
  44. package/templates/template-react-tanstack-jotai-tailwindcss/src/styles/variable.css +21 -0
  45. package/templates/template-react-tanstack-jotai-tailwindcss/src/types/auto-imports.d.ts +33 -0
  46. package/templates/template-react-tanstack-jotai-tailwindcss/src/types/color.d.ts +1 -0
  47. package/templates/template-react-tanstack-jotai-tailwindcss/src/utils/rainbow-print.ts +10 -0
  48. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/404/index.tsx +18 -0
  49. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/About/index.tsx +7 -0
  50. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/Button/index.tsx +24 -0
  51. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/React/index.tsx +18 -0
  52. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/Vite/index.tsx +20 -0
  53. package/templates/template-react-tanstack-jotai-tailwindcss/src/views/Index/index.tsx +50 -0
  54. package/templates/template-react-tanstack-jotai-tailwindcss/tailwind.config.js +8 -0
  55. package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.app.json +36 -0
  56. package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.json +7 -0
  57. package/templates/template-react-tanstack-jotai-tailwindcss/tsconfig.node.json +24 -0
  58. package/templates/template-react-tanstack-jotai-tailwindcss/types/vite-env.d.ts +10 -0
  59. package/templates/template-react-tanstack-jotai-tailwindcss/vite.config.ts +15 -0
  60. package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/commit-msg +6 -0
  61. package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/lintstagedrc.cjs +8 -0
  62. package/templates/template-react18-tanstack-jotai-tailwindcss/.husky/pre-commit +10 -0
  63. package/templates/template-react18-tanstack-jotai-tailwindcss/.prettierignore +13 -0
  64. package/templates/template-react18-tanstack-jotai-tailwindcss/.vscode/extensions.json +5 -0
  65. package/templates/template-react18-tanstack-jotai-tailwindcss/README.md +40 -0
  66. package/templates/template-react18-tanstack-jotai-tailwindcss/_gitignore +27 -0
  67. package/templates/template-react18-tanstack-jotai-tailwindcss/commitlint.config.mjs +28 -0
  68. package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/_base.ts +36 -0
  69. package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/development.ts +7 -0
  70. package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/production.ts +1 -0
  71. package/templates/template-react18-tanstack-jotai-tailwindcss/config/build/test.ts +1 -0
  72. package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env +0 -0
  73. package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env.development +2 -0
  74. package/templates/template-react18-tanstack-jotai-tailwindcss/env/.env.production +1 -0
  75. package/templates/template-react18-tanstack-jotai-tailwindcss/eslint.config.mjs +63 -0
  76. package/templates/template-react18-tanstack-jotai-tailwindcss/index.html +13 -0
  77. package/templates/template-react18-tanstack-jotai-tailwindcss/package.json +50 -0
  78. package/templates/template-react18-tanstack-jotai-tailwindcss/postcss.config.js +6 -0
  79. package/templates/template-react18-tanstack-jotai-tailwindcss/prettier.config.mjs +11 -0
  80. package/templates/template-react18-tanstack-jotai-tailwindcss/public/lic.svg +1263 -0
  81. package/templates/template-react18-tanstack-jotai-tailwindcss/public/react.svg +1 -0
  82. package/templates/template-react18-tanstack-jotai-tailwindcss/public/vite.svg +1 -0
  83. package/templates/template-react18-tanstack-jotai-tailwindcss/src/assets/react.svg +1 -0
  84. package/templates/template-react18-tanstack-jotai-tailwindcss/src/components/Lic/index.tsx +12 -0
  85. package/templates/template-react18-tanstack-jotai-tailwindcss/src/main.tsx +21 -0
  86. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routeTree.gen.ts +145 -0
  87. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/__root.tsx +11 -0
  88. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout/about.tsx +6 -0
  89. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout/index.tsx +6 -0
  90. package/templates/template-react18-tanstack-jotai-tailwindcss/src/routes/_layout.tsx +23 -0
  91. package/templates/template-react18-tanstack-jotai-tailwindcss/src/store/index.ts +1 -0
  92. package/templates/template-react18-tanstack-jotai-tailwindcss/src/store/module/favorite.ts +5 -0
  93. package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/animation.css +8 -0
  94. package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/main.css +11 -0
  95. package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/tailwind.css +30 -0
  96. package/templates/template-react18-tanstack-jotai-tailwindcss/src/styles/variable.css +21 -0
  97. package/templates/template-react18-tanstack-jotai-tailwindcss/src/types/auto-imports.d.ts +33 -0
  98. package/templates/template-react18-tanstack-jotai-tailwindcss/src/types/color.d.ts +1 -0
  99. package/templates/template-react18-tanstack-jotai-tailwindcss/src/utils/rainbow-print.ts +10 -0
  100. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/404/index.tsx +18 -0
  101. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/About/index.tsx +7 -0
  102. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/Button/index.tsx +24 -0
  103. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/React/index.tsx +18 -0
  104. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/Vite/index.tsx +20 -0
  105. package/templates/template-react18-tanstack-jotai-tailwindcss/src/views/Index/index.tsx +50 -0
  106. package/templates/template-react18-tanstack-jotai-tailwindcss/tailwind.config.js +8 -0
  107. package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.app.json +36 -0
  108. package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.json +7 -0
  109. package/templates/template-react18-tanstack-jotai-tailwindcss/tsconfig.node.json +24 -0
  110. package/templates/template-react18-tanstack-jotai-tailwindcss/types/vite-env.d.ts +10 -0
  111. package/templates/template-react18-tanstack-jotai-tailwindcss/vite.config.ts +15 -0
  112. package/templates/template-vue/eslint.config.js +20 -1
  113. package/templates/template-vue/package.json +2 -2
@@ -7,7 +7,6 @@ export default [
7
7
  name: 'lint',
8
8
  files: ['**/*.{ts,mts,tsx,vue}'],
9
9
  },
10
-
11
10
  {
12
11
  name: 'lint-ignore',
13
12
  ignores: ['**/dist/**', 'node_modules', '**/dist-ssr/**', '**/coverage/**'],
@@ -21,4 +20,24 @@ export default [
21
20
  ...pluginVue.configs['flat/essential'],
22
21
  ...vueTsEslintConfig(),
23
22
  skipFormatting,
23
+ {
24
+ name: 'lik',
25
+ rules: {
26
+ 'no-unused-vars': [
27
+ 'error',
28
+ {
29
+ argsIgnorePattern: '^_|e',
30
+ varsIgnorePattern: '^_|[\u4e00-\u9fa5]|^[A-Z]',
31
+ },
32
+ ],
33
+ '@typescript-eslint/no-unused-vars': [
34
+ 'error',
35
+ {
36
+ argsIgnorePattern: '^_|e',
37
+ varsIgnorePattern: '^_|[\u4e00-\u9fa5]',
38
+ },
39
+ ],
40
+ '@typescript-eslint/no-explicit-any': 'off',
41
+ },
42
+ },
24
43
  ]
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "template-vue",
2
+ "name": "lik-create-app",
3
3
  "version": "0.0.0",
4
4
  "private": true,
5
5
  "type": "module",
@@ -42,4 +42,4 @@
42
42
  "vite-plugin-vue-devtools": "^7.6.5",
43
43
  "vue-tsc": "^2.1.10"
44
44
  }
45
- }
45
+ }