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
5 changes: 4 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
* text=auto eol=lf

/spec export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.prettierrc export-ignore
/.travis.yml export-ignore
/screenshot.png export-ignore
/spec export-ignore
/typings export-ignore
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": true
}
60 changes: 60 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
### Project specific config ###
language: node_js
node_js: lts/*
os: linux

env:
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta

script:
- commitlint-travis

stages:
- test
- name: release
if: (NOT type = pull_request) AND branch = master

jobs:
include:
- stage: release
node_js: lts/*
script:
- export PATH=${PATH}:${HOME}/atom/usr/bin/
deploy:
provider: script
skip_cleanup: true
script:
- npx semantic-release

### Generic setup follows ###
install:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- "./build-package.sh"

notifications:
email:
on_success: never
on_failure: change

branches:
only:
- master
- "/^greenkeeper/.*$/"

git:
depth: 10

sudo: false

dist: trusty

addons:
apt:
packages:
- build-essential
- fakeroot
- git
- libsecret-1-dev
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# atom-ide-datatip package

[![Build Status](https://api.travis-ci.org/atom-ide-community/atom-ide-datatip.png)](https://travis-ci.org/atom-ide-community/atom-ide-datatip)

A replacement of the DataTip functionality from the original Atom-IDE / Nuclide package developed by Facebook.

![A screenshot of your package](screenshot.png)
25 changes: 23 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,34 @@
"react-dom": "^16.7.0"
},
"devDependencies": {
"@types/atom": "^1.31.0",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/travis-cli": "^7.5.2",
"@semantic-release/apm-config": "^6.0.1",
"@types/atom": "^1.31.1",
"@types/dompurify": "0.0.32",
"@types/marked": "^0.6.0",
"@types/node": "^10.12.18",
"@types/react": "^16.7.21",
"@types/react-dom": "^16.0.11",
"atom-languageclient": "^0.9.9"
"atom-languageclient": "^0.9.9",
"commitlint": "^7.5.2",
"husky": "^1.3.1",
"prettier": "1.16.4",
"semantic-release": "^15.13.3"
},
"release": {
"extends": "@semantic-release/apm-config"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"configSchema": {
"showDataTipOnCursorMove": {
Expand Down