8 Commits

Author SHA1 Message Date
b00af86b1b feat(project): Bump version
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 20:49:22 +04:00
72b09d4176 fix(typescript): type-annotation-spacing
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 20:49:02 +04:00
e7da809741 feat(project): Bump version
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 20:43:09 +04:00
39cc9c02d9 fix(typescript): Rule "type-annotation-spacing"
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 20:42:34 +04:00
7d84ff8e8e fix(gitlab): Config npmrc
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 17:02:50 +04:00
385c4f57ed fix(gitlab): Correcting quotes
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 16:56:36 +04:00
577faf9774 feat(project): Bump version
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 16:53:52 +04:00
656bc470f7 feat(gitlab): Initial CI config
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 16:51:29 +04:00
5 changed files with 35 additions and 3 deletions

View File

@ -14,3 +14,7 @@ trim_trailing_whitespace = true
[*.json]
indent_size = 2
indent_style = space
[*.yml]
indent_size = 2
indent_style = space

19
.gitlab-ci.yml Normal file
View 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

View File

@ -204,5 +204,6 @@ src/
.editorconfig
.eslintrc.json
.gitignore
.gitlab-ci.yml
rollup.config.js
tsconfig.json

View File

@ -1,6 +1,6 @@
{
"name": "@valentineus/eslint-config",
"version": "0.0.3",
"version": "0.0.6",
"description": "Personal ESLint configuration",
"main": "index.js",
"repository": "git@code.valentineus.link:eslint-config.git",

View File

@ -142,8 +142,16 @@
"@typescript-eslint/type-annotation-spacing": [
"error",
{
"after": true,
"before": false
"overrides": {
"arrow": {
"after": true,
"before": true
},
"colon": {
"after": true,
"before": false
}
}
}
],
"@typescript-eslint/typedef": [