Skip to content

Commit 4b09cd5

Browse files
committed
init
0 parents  commit 4b09cd5

File tree

169 files changed

+17530
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+17530
-0
lines changed

typescript-version/.editorconfig

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
# Matches multiple files with brace expansion notation
12+
# Set default charset
13+
[*.{js,py}]
14+
charset = utf-8
15+
16+
# 4 space indentation
17+
[*.py]
18+
indent_style = space
19+
indent_size = 4
20+
21+
# 2 space indentation
22+
[*.{vue,scss,ts}]
23+
indent_style = space
24+
indent_size = 2
25+
26+
# Tab indentation (no size specified)
27+
[Makefile]
28+
indent_style = tab
29+
30+
# Indentation override for all JS under lib directory
31+
[lib/**.js]
32+
indent_style = space
33+
indent_size = 2
34+
35+
# Matches the exact files either package.json or .travis.yml
36+
[{package.json,.travis.yml}]
37+
indent_style = space
38+
indent_size = 2

typescript-version/.eslintrc.js

+225
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
},
6+
extends: [
7+
'@antfu/eslint-config-vue',
8+
'plugin:vue/vue3-recommended',
9+
'plugin:import/recommended',
10+
'plugin:import/typescript',
11+
'plugin:promise/recommended',
12+
'plugin:sonarjs/recommended',
13+
'plugin:@typescript-eslint/recommended',
14+
15+
// 'plugin:unicorn/recommended',
16+
],
17+
parser: 'vue-eslint-parser',
18+
parserOptions: {
19+
ecmaVersion: 13,
20+
parser: '@typescript-eslint/parser',
21+
sourceType: 'module',
22+
},
23+
plugins: [
24+
'vue',
25+
'@typescript-eslint',
26+
'regex',
27+
],
28+
ignorePatterns: ['src/@iconify/*.js', 'node_modules', 'dist', '*.d.ts'],
29+
rules: {
30+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
31+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
32+
33+
// indentation (Already present in TypeScript)
34+
'indent': ['error', 2],
35+
36+
// Enforce trailing comma (Already present in TypeScript)
37+
'comma-dangle': ['error', 'always-multiline'],
38+
39+
// Enforce consistent spacing inside braces of object (Already present in TypeScript)
40+
'object-curly-spacing': ['error', 'always'],
41+
42+
// Disable max-len
43+
'max-len': 'off',
44+
45+
// we don't want it
46+
'semi': ['error', 'never'],
47+
48+
// add parens ony when required in arrow function
49+
'arrow-parens': ['error', 'as-needed'],
50+
51+
// add new line above comment
52+
'newline-before-return': 'error',
53+
54+
// add new line above comment
55+
'lines-around-comment': [
56+
'error',
57+
{
58+
beforeBlockComment: true,
59+
beforeLineComment: true,
60+
allowBlockStart: true,
61+
allowClassStart: true,
62+
allowObjectStart: true,
63+
allowArrayStart: true,
64+
},
65+
],
66+
67+
'array-element-newline': ['error', 'consistent'],
68+
'array-bracket-newline': ['error', 'consistent'],
69+
70+
'vue/multi-word-component-names': 'off',
71+
72+
'padding-line-between-statements': [
73+
'error',
74+
{ blankLine: 'always', prev: 'expression', next: 'const' },
75+
{ blankLine: 'always', prev: 'const', next: 'expression' },
76+
{ blankLine: 'always', prev: 'multiline-const', next: '*' },
77+
{ blankLine: 'always', prev: '*', next: 'multiline-const' },
78+
],
79+
80+
// Plugin: eslint-plugin-import
81+
'import/prefer-default-export': 'off',
82+
'import/newline-after-import': ['error', { count: 1 }],
83+
'no-restricted-imports': ['error', 'vuetify/components'],
84+
85+
// For omitting extension for ts files
86+
'import/extensions': [
87+
'error',
88+
'ignorePackages',
89+
{
90+
js: 'never',
91+
jsx: 'never',
92+
ts: 'never',
93+
tsx: 'never',
94+
},
95+
],
96+
97+
// ignore virtual files
98+
'import/no-unresolved': [2, {
99+
ignore: [
100+
'~pages$',
101+
'virtual:generated-layouts',
102+
103+
// Ignore vite's ?raw imports
104+
'.*\?raw',
105+
],
106+
}],
107+
108+
// Thanks: https://stackoverflow.com/a/63961972/10796681
109+
'no-shadow': 'off',
110+
'@typescript-eslint/no-shadow': ['error'],
111+
112+
'@typescript-eslint/consistent-type-imports': 'error',
113+
114+
// Plugin: eslint-plugin-promise
115+
'promise/always-return': 'off',
116+
'promise/catch-or-return': 'off',
117+
118+
// ESLint plugin vue
119+
'vue/block-tag-newline': 'error',
120+
'vue/component-api-style': 'error',
121+
'vue/component-name-in-template-casing': ['error', 'PascalCase', { registeredComponentsOnly: false }],
122+
'vue/custom-event-name-casing': ['error', 'camelCase', {
123+
ignores: [
124+
'/^(click):[a-z]+((\d)|([A-Z0-9][a-z0-9]+))*([A-Z])?/',
125+
],
126+
}],
127+
'vue/define-macros-order': 'error',
128+
'vue/html-comment-content-newline': 'error',
129+
'vue/html-comment-content-spacing': 'error',
130+
'vue/html-comment-indent': 'error',
131+
'vue/match-component-file-name': 'error',
132+
'vue/no-child-content': 'error',
133+
134+
// NOTE this rule only supported in SFC, Users of the unplugin-vue-define-options should disable that rule: https://github.com/vuejs/eslint-plugin-vue/issues/1886
135+
// 'vue/no-duplicate-attr-inheritance': 'error',
136+
'vue/no-empty-component-block': 'error',
137+
'vue/no-multiple-objects-in-class': 'error',
138+
'vue/no-reserved-component-names': 'error',
139+
'vue/no-template-target-blank': 'error',
140+
'vue/no-useless-mustaches': 'error',
141+
'vue/no-useless-v-bind': 'error',
142+
'vue/padding-line-between-blocks': 'error',
143+
'vue/prefer-separate-static-class': 'error',
144+
'vue/prefer-true-attribute-shorthand': 'error',
145+
'vue/v-on-function-call': 'error',
146+
'vue/no-restricted-class': ['error', '/^(p|m)(l|r)-/'],
147+
148+
// -- Extension Rules
149+
'vue/no-irregular-whitespace': 'error',
150+
'vue/template-curly-spacing': 'error',
151+
152+
// -- Sonarlint
153+
'sonarjs/no-duplicate-string': 'off',
154+
'sonarjs/no-nested-template-literals': 'off',
155+
156+
// -- Unicorn
157+
// 'unicorn/filename-case': 'off',
158+
// 'unicorn/prevent-abbreviations': ['error', {
159+
// replacements: {
160+
// props: false,
161+
// },
162+
// }],
163+
164+
// Internal Rules
165+
'valid-appcardcode-code-prop': 'error',
166+
'valid-appcardcode-demo-sfc': 'error',
167+
168+
// https://github.com/gmullerb/eslint-plugin-regex
169+
'regex/invalid': [
170+
'error',
171+
[
172+
{
173+
regex: '@/assets/images',
174+
replacement: '@images',
175+
message: 'Use \'@images\' path alias for image imports',
176+
},
177+
{
178+
regex: '@/styles',
179+
replacement: '@styles',
180+
message: 'Use \'@styles\' path alias for importing styles from \'src/styles\'',
181+
},
182+
183+
// {
184+
// id: 'Disallow icon of icon library',
185+
// regex: 'tabler-\\w',
186+
// message: 'Only \'mdi\' icons are allowed',
187+
// },
188+
189+
{
190+
regex: '@core/\\w',
191+
message: 'You can\'t use @core when you are in @layouts module',
192+
files: {
193+
inspect: '@layouts/.*',
194+
},
195+
},
196+
{
197+
regex: 'useLayouts\\(',
198+
message: '`useLayouts` composable is only allowed in @layouts & @core directory. Please use `useThemeConfig` composable instead.',
199+
files: {
200+
inspect: '^(?!.*(@core|@layouts)).*',
201+
},
202+
},
203+
{
204+
regex: 'import axios from \'axios\'',
205+
replacement: 'import axios from \'@axios\'',
206+
message: 'Use axios instances created in \'src/plugin/axios.ts\' instead of unconfigured axios',
207+
files: {
208+
ignore: '^.*plugins/axios.ts.*',
209+
},
210+
},
211+
],
212+
213+
// Ignore files
214+
'\.eslintrc\.js',
215+
],
216+
},
217+
settings: {
218+
'import/resolver': {
219+
node: {
220+
extensions: ['.ts', '.js', '.tsx', '.jsx', '.mjs', '.png', '.jpg'],
221+
},
222+
typescript: {},
223+
},
224+
},
225+
}

typescript-version/.gitignore

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
*.local
15+
16+
/cypress/videos/
17+
/cypress/screenshots/
18+
19+
# Editor directories and files
20+
.vscode/*
21+
!.vscode/extensions.json
22+
!.vscode/settings.json
23+
!.vscode/*.code-snippets
24+
!.vscode/tours
25+
.idea
26+
*.suo
27+
*.ntvs*
28+
*.njsproj
29+
*.sln
30+
*.sw?
31+
.yarn
32+
33+
# iconify dist files
34+
src/@iconify/*.js
35+
36+
# Free
37+
.stylelintrc.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"Add hand emoji": {
3+
"prefix": "cm-hand-emoji",
4+
"body": [
5+
"👉"
6+
],
7+
"description": "Add hand emoji"
8+
},
9+
"Add info emoji": {
10+
"prefix": "cm-info-emoji",
11+
"body": [
12+
"ℹ️"
13+
],
14+
"description": "Add info emoji"
15+
},
16+
"Add warning emoji": {
17+
"prefix": "cm-warning-emoji",
18+
"body": [
19+
""
20+
],
21+
"description": "Add warning emoji"
22+
}
23+
}
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"recommendations": [
3+
"dbaeumer.vscode-eslint",
4+
"mgmcdermott.vscode-language-babel",
5+
"editorconfig.editorconfig",
6+
"xabikos.javascriptsnippets",
7+
"stylelint.vscode-stylelint",
8+
"fabiospampinato.vscode-highlight",
9+
"github.vscode-pull-request-github",
10+
"vue.volar",
11+
"antfu.iconify",
12+
"cipchk.cssrem"
13+
]
14+
}

0 commit comments

Comments
 (0)