Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "@sourcegraph/eslint-config",
"parserOptions": {
"project": "tsconfig.json"
}
}
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
package.json
package-lock.json
dist/
16 changes: 7 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
language: node_js
node_js: '10'
cache:
directories:
- ~/.npm
cache: yarn
env:
global:
- FORCE_COLOR=1
install:
- npm ci
- yarn
jobs:
include:
- stage: test
script:
- npm run prettier
- npm run tslint
- npm run build
- yarn run prettier --write=false
- yarn run eslint
- yarn run build
- stage: release
script:
- npm run build
- npm run semantic-release
- yarn run build
- yarn run semantic-release
stages:
- test
- name: release
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
}
Loading