Skip to content

Commit dba6e35

Browse files
committed
chore: sub
1 parent eb34c93 commit dba6e35

6 files changed

Lines changed: 261 additions & 61 deletions

File tree

.vscode/i18n-ally-next-custom-framework.yml

100755100644
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
languageIds:
44
- svelte
55
- typescript
6+
- javascript
67

78
# An Array of regex to find the keys usage. **The key should captured in the first match group**.
89
# You should unescape regex string in order to fit in YAML file
910
# for that, you can use https://www.freeformatter.com/json-escape.html
1011
keyMatchReg:
1112
# The following examples show how to detect `t("your.i18n.keys")`
12-
- "[^\\w\\d](?:localize|l|lt|lu|lc|sl|slt|slu|slc)\\([\\s\\t\\n]*['\"`]([[\\w\\d\\. \\-\\[\\]]*?)['\"`]"
13+
- "[^\\w\\d](?:localize|l|lt|lu|lc|sl|slt|slu|slc)\\(['\"`]([[\\w\\d\\. \\-\\[\\]]*?)['\"`]"
1314

1415

1516
# An Array of string contains refactor templates.
@@ -21,4 +22,4 @@ keyMatchReg:
2122

2223

2324
# If set to true, only enables custom framework (will disable all built-in frameworks)
24-
monopoly: true
25+
monopoly: false

.vscode/settings.json

100755100644
Lines changed: 71 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,81 @@
11
{
2+
"files.exclude": {
3+
"**/.bzr": true,
4+
"**/.bzrmeta": true,
5+
"**/.gradle": true,
6+
"**/.DS_Store": true,
7+
"**/.factorypath": true,
8+
"**/.git": true,
9+
"**/.metadata*": true,
10+
"**/.project": true,
11+
"**/.settings": true,
12+
"**/.tags*": true,
13+
"**/.tmp": true,
14+
"**/.zip": true,
15+
"**/tags": true,
16+
"*compiled": true
17+
},
18+
"search.exclude": {
19+
"**/pnpm-lock.yaml": true,
20+
"**/yarn.lock": true,
21+
"**/.metadata*": true,
22+
"**/.tmp": true,
23+
"**/.gradle": true,
24+
"**/docs": true,
25+
"**/*.log": true,
26+
"**/*.svg": true,
27+
"**/build": true,
28+
"**/dist": true,
29+
"**/node_modules": true,
30+
"downloaded": true,
31+
"platforms": true
32+
},
33+
"files.watcherExclude": {
34+
"**/pnpm-lock.yaml": true,
35+
"**/vendor.js": true,
36+
"**/bundle.js": true,
37+
"**/.history": true,
38+
"**/build": true,
39+
"**/dist": true,
40+
"**/*.min.js": true,
41+
"**/*.js.map": true,
42+
"**/.gradle": true,
43+
"**/.git": true,
44+
"**/node_modules/**": true,
45+
"**/.hg/store/**": true,
46+
"platforms": true
47+
},
248
"i18n-ally-next.keystyle": "nested",
349
"typescript.tsdk": "node_modules/typescript/lib",
450
"cmake.sourceDirectory": "${workspaceFolder}/cpp/cpp_test_app",
551
"cmake.buildDirectory": "${workspaceFolder}/cpp/cpp_test_app/build",
652
"cmake.debugConfig": {
753
"args": ["/home/mguillon/Desktop/test_images", "301061184-41031c73-ef8b-4c71-b9ca-c5d17c0ec896.jpg"]
854
},
9-
"C_Cpp.default.compilerPath": "/usr/bin/gcc-12",
55+
"editor.snippetSuggestions": "top",
56+
"less.validate": false,
57+
"scss.lint.validProperties": [
58+
"max-font-size",
59+
"min-font-size",
60+
"ios-a11y-adjusts-font-size",
61+
"status-bar-style",
62+
"navigation-bar-color",
63+
"status-bar-color",
64+
"ripple-color",
65+
"stroke-color",
66+
"fill-color",
67+
"on-check-color",
68+
"on-tint-color",
69+
"shape",
70+
"elevation",
71+
"horizontal-align",
72+
"horizontal-alignment",
73+
"vertical-text-alignment",
74+
"floating",
75+
"vertical-alignment",
76+
"placeholder-color",
77+
"variant"
78+
],
1079
"svelte.plugin.svelte.compilerWarnings": {
1180
"missing-declaration": "ignore",
1281
"a11y-aria-attributes": "ignore",
@@ -33,28 +102,6 @@
33102
"a11y-missing-content": "ignore",
34103
"illegal-attribute-character": "ignore"
35104
},
36-
"scss.lint.validProperties": [
37-
"max-font-size",
38-
"min-font-size",
39-
"ios-a11y-adjusts-font-size",
40-
"status-bar-style",
41-
"navigation-bar-color",
42-
"status-bar-color",
43-
"ripple-color",
44-
"stroke-color",
45-
"fill-color",
46-
"on-check-color",
47-
"on-tint-color",
48-
"shape",
49-
"elevation",
50-
"horizontal-align",
51-
"horizontal-alignment",
52-
"vertical-text-alignment",
53-
"floating",
54-
"vertical-alignment",
55-
"placeholder-color",
56-
"variant"
57-
],
58105
"C_Cpp.errorSquiggles": "disabled",
59106
"terminal.integrated.defaultProfile.linux": "documentscanner",
60107
"terminal.integrated.defaultProfile.osx": "documentscanner",
@@ -181,7 +228,5 @@
181228
"pwa-node": "/Users/mguillon/.local/share/mise/shims/node"
182229
},
183230
"python.defaultInterpreterPath": "/Users/mguillon/.local/share/mise/installs/python/3.11.13/bin/python",
184-
"i18n-ally-next.localesPaths": [
185-
"app/i18n"
186-
]
231+
"i18n-ally-next.localesPaths": ["app/i18n"]
187232
}

0 commit comments

Comments
 (0)