Browse Source
chore: update eslint configuration and adjust docker command [skip ci] (#4101)
pull/4102/head
Vben
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
10 additions and
14 deletions
-
.vscode/settings.json
-
Dockerfile
-
internal/lint-configs/eslint-config/src/custom-config.ts
-
nginx.conf
|
|
|
@ -183,7 +183,7 @@ |
|
|
|
"*.env": "$(capture).env.*", |
|
|
|
"README.md": "README*,CHANGELOG*,LICENSE,CNAME", |
|
|
|
"package.json": "pnpm-lock.yaml,pnpm-workspace.yaml,.gitattributes,.gitignore,.gitpod.yml,.npmrc,.browserslistrc,.node-version,.git*,.tazerc.json", |
|
|
|
"Dockerfile": "Dockerfile,.docker*,docker-entrypoint.sh,build-local-docker*", |
|
|
|
"Dockerfile": "Dockerfile,.docker*,docker-entrypoint.sh,build-local-docker*,nginx.conf", |
|
|
|
"eslint.config.mjs": ".eslintignore,.prettierignore,.stylelintignore,.commitlintrc.*,.prettierrc.*,stylelint.config.*,.lintstagedrc.mjs,.ls-lint*,cspell.json", |
|
|
|
"tailwind.config.mjs": "postcss.*" |
|
|
|
}, |
|
|
|
|
|
|
|
@ -23,7 +23,7 @@ FROM nginx:stable-alpine as production |
|
|
|
RUN echo "types { application/javascript js mjs; }" > /etc/nginx/conf.d/mjs.conf |
|
|
|
COPY --from=builder /app/apps/web-antd/dist /usr/share/nginx/html |
|
|
|
|
|
|
|
COPY ./deploy/nginx.conf /etc/nginx/nginx.conf |
|
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf |
|
|
|
|
|
|
|
EXPOSE 8080 |
|
|
|
|
|
|
|
|
|
|
|
@ -14,6 +14,13 @@ const customConfig: Linter.Config[] = [ |
|
|
|
'vue/require-default-prop': 'off', |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
files: ['packages/effects/**/**', 'packages/types/**/**'], |
|
|
|
ignores: restrictedImportIgnores, |
|
|
|
rules: { |
|
|
|
'perfectionist/sort-interfaces': 'off', |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
// apps内部的一些基础规则
|
|
|
|
files: ['apps/**/**'], |
|
|
|
@ -46,6 +53,7 @@ const customConfig: Linter.Config[] = [ |
|
|
|
], |
|
|
|
}, |
|
|
|
], |
|
|
|
'perfectionist/sort-interfaces': 'off', |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
|
|
|
|
@ -73,15 +73,3 @@ http { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
# stream { # stream 模块配置和 http 模块在相同级别 |
|
|
|
# upstream redis { |
|
|
|
# server 127.0.0.1:6379 max_fails=3 fail_timeout=30s; |
|
|
|
# } |
|
|
|
# server { |
|
|
|
# listen 16379; |
|
|
|
# proxy_connect_timeout 1s; |
|
|
|
# proxy_timeout 3s; |
|
|
|
# proxy_pass redis; |
|
|
|
# } |
|
|
|
# } |