Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Update dependency tslint-config-ikatyang to version 2.x #2

Merged
merged 4 commits into from
Jul 30, 2017
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ before_install:

script:
- yarn run lint
- yarn run format-check
- yarn run build
- yarn run test-coverage

Expand Down
21 changes: 0 additions & 21 deletions gulpfile.ts

This file was deleted.

9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
"test": "tslint --test ./tests/*/*",
"test-coverage": "nyc yarn run test",
"build": "rm -rf ./rules && tsc -p tsconfig.build.json",
"format": "gulp format",
"format-check": "gulp format-check",
"release": "standard-version"
},
"dependencies": {
Expand All @@ -34,16 +32,13 @@
},
"devDependencies": {
"@types/fast-diff": "1.1.0",
"@types/gulp": "3.8.33",
"@types/node": "8.0.17",
"@types/prettier": "1.5.0",
"gulp": "3.9.1",
"gulp-plugin-prettier": "1.0.0",
"nyc": "11.1.0",
"prettier": "1.5.3",
"standard-version": "4.2.0",
"ts-node": "3.3.0",
"tslint": "5.5.0",
"tslint-config-ikatyang": "1.0.2",
"tslint-config-ikatyang": "2.0.1",
"typescript": "2.4.2"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"declaration": true,
"importHelpers": true
},
"include": ["src/**/*.ts", "gulpfile.ts"]
"include": ["src/**/*.ts"]
}
5 changes: 4 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": "tslint-config-ikatyang"
"extends": "tslint-config-ikatyang",
"rules": {
"filename-convention": [true, { "allowPatterns": ["Rule$"] }]
}
}