lucy-cli 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintrc.cjs +1 -1
- package/LICENSE.md +22 -0
- package/README.md +103 -1
- package/dist/helpers.d.ts +4 -0
- package/dist/helpers.js +69 -0
- package/dist/index.d.ts +26 -1
- package/dist/index.js +49 -32
- package/dist/init copy.d.ts +8 -0
- package/dist/init copy.js +167 -0
- package/dist/init.js +4 -53
- package/dist/install.d.ts +2 -0
- package/dist/install.js +53 -0
- package/dist/prepare.d.ts +8 -0
- package/dist/prepare.js +18 -0
- package/dist/settings.json +10 -78
- package/dist/start_gulp.d.ts +2 -0
- package/{src/dev.ts → dist/start_gulp.js} +3 -9
- package/files/.eslintrc.cjs +3 -0
- package/files/.yarnrc.yml +0 -2
- package/files/currents.config.js +1 -1
- package/files/docs.tsconfig.json +6 -5
- package/files/lucy.json +26 -2
- package/lucy.jpg +0 -0
- package/package.json +1 -1
- package/src/helpers.ts +79 -0
- package/src/index.ts +88 -34
- package/src/init.ts +3 -53
- package/src/prepare.ts +23 -0
- package/src/settings.json +10 -78
- package/.drone/.drone.yml +0 -156
- package/.drone/mail_prod_build.hbs +0 -319
- package/.drone/mail_prod_deploy.hbs +0 -309
- package/.drone/mail_satges.hbs +0 -309
- package/.drone/telegram_prod_build.tpl +0 -23
- package/.drone/telegram_prod_deploy.tpl +0 -20
- package/.drone/telegram_stages.tpl +0 -20
- package/files/.eslintrc.json +0 -3
- package/files/typescript/.eslintrc.json +0 -35
@@ -1,35 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"extends": ["eslint:recommended", "plugin:import/recommended", "plugin:jsdoc/recommended","plugin:@typescript-eslint/recommended", "plugin:@wix/cli/recommended"],
|
3
|
-
"plugins": ["simple-import-sort", "destructuring-import-spacing", "@typescript-eslint"],
|
4
|
-
"parser": "@typescript-eslint/parser",
|
5
|
-
"rules": {
|
6
|
-
"curly": ["error", "multi-line"],
|
7
|
-
"simple-import-sort/imports": "error",
|
8
|
-
"simple-import-sort/exports": "error",
|
9
|
-
"indent": [2, "tab"],
|
10
|
-
"no-tabs": 0,
|
11
|
-
"semi-style": ["error", "last"],
|
12
|
-
"semi": [2, "always"],
|
13
|
-
"object-curly-spacing": ["error", "always"],
|
14
|
-
"space-in-parens": ["error", "never"],
|
15
|
-
"newline-before-return": "error",
|
16
|
-
"space-before-blocks": ["error", { "functions": "always", "keywords": "never", "classes": "always" }],
|
17
|
-
"comma-spacing": ["error", { "before": false, "after": true }],
|
18
|
-
"no-multi-spaces": ["error"],
|
19
|
-
"import/newline-after-import": ["error", { "count": 1 }],
|
20
|
-
"destructuring-import-spacing/destructuring-import-spacing": 2,
|
21
|
-
"no-unused-vars": "warn",
|
22
|
-
"import/no-unresolved": [0],
|
23
|
-
"no-forbidden-relative-imports": [0],
|
24
|
-
"@typescript-eslint/triple-slash-reference": "off"
|
25
|
-
},
|
26
|
-
"root": true,
|
27
|
-
"env": {
|
28
|
-
"es6": true,
|
29
|
-
"browser": true,
|
30
|
-
"node": true
|
31
|
-
},
|
32
|
-
"globals": {
|
33
|
-
"$w": "readonly"
|
34
|
-
}
|
35
|
-
}
|