Skip to content

Commit 6f7ffcb

Browse files
committed
adding some extra settings
1 parent 6a26ec3 commit 6f7ffcb

File tree

5 files changed

+53
-2
lines changed

5 files changed

+53
-2
lines changed

.npmignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
## copy from .gitignore
2+
.DS_Store
3+
.idea
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
node_modules/
8+
.npm
9+
.eslintcache
10+
/coverage/
11+
/.nyc_output/
12+
/tmp/
13+
14+
# .npmignore
15+
.babelrc
16+
.editorconfig
17+
.eslintignore
18+
.eslintrc.js
19+
.gitignore
20+
.nvmrc
21+
.nycrc
22+
.prettierignore
23+
.prettierrc
24+
.travis.yml
25+
AUTHORS.md
26+
CONTRIBUTING.md
27+
tsconfig.json
28+
tslint.json
29+
/example
30+
/test
31+
/docs
32+
/coverage
33+
/coverage

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# for potential vendor files in src
2+
lib/**/*
3+
src/lib/vendor/**/*

.prettierrc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"printWidth": 100,
3+
"tabWidth": 2,
4+
"singleQuote": true,
5+
"trailingComma": "all",
6+
"overrides": [
7+
{
8+
"files": "*.json",
9+
"options": {
10+
"printWidth": 999999
11+
}
12+
}
13+
]
14+
}

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: node_js
33
cache: npm
44

55
node_js:
6-
- '8'
6+
- '10'
77

88
sudo: false
99

@@ -28,5 +28,5 @@ deploy:
2828
api_key: $NPM_TOKEN
2929
on:
3030
tags: true
31-
node: '8'
31+
node: '10'
3232
skip_cleanup: true

0 commit comments

Comments
 (0)