Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
e7da809741
|
|||
39cc9c02d9
|
|||
7d84ff8e8e
|
|||
385c4f57ed
|
|||
577faf9774
|
|||
656bc470f7
|
@ -14,3 +14,7 @@ trim_trailing_whitespace = true
|
|||||||
[*.json]
|
[*.json]
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
|
||||||
|
[*.yml]
|
||||||
|
indent_size = 2
|
||||||
|
indent_style = space
|
||||||
|
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
image: "node:latest"
|
||||||
|
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- node_modules/
|
||||||
|
|
||||||
|
job-publish:
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
||||||
|
- export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
||||||
|
|
||||||
|
script:
|
||||||
|
- yarn install
|
||||||
|
- yarn run build
|
||||||
|
- echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
|
||||||
|
- npm publish
|
@ -204,5 +204,6 @@ src/
|
|||||||
.editorconfig
|
.editorconfig
|
||||||
.eslintrc.json
|
.eslintrc.json
|
||||||
.gitignore
|
.gitignore
|
||||||
|
.gitlab-ci.yml
|
||||||
rollup.config.js
|
rollup.config.js
|
||||||
tsconfig.json
|
tsconfig.json
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@valentineus/eslint-config",
|
"name": "@valentineus/eslint-config",
|
||||||
"version": "0.0.3",
|
"version": "0.0.5",
|
||||||
"description": "Personal ESLint configuration",
|
"description": "Personal ESLint configuration",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": "git@code.valentineus.link:eslint-config.git",
|
"repository": "git@code.valentineus.link:eslint-config.git",
|
||||||
|
@ -140,11 +140,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"@typescript-eslint/type-annotation-spacing": [
|
"@typescript-eslint/type-annotation-spacing": [
|
||||||
"error",
|
"error"
|
||||||
{
|
|
||||||
"after": true,
|
|
||||||
"before": false
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"@typescript-eslint/typedef": [
|
"@typescript-eslint/typedef": [
|
||||||
"error",
|
"error",
|
||||||
|
Reference in New Issue
Block a user