|
98 | 98 | "test:unit": "mocha test/*.unittest.js --max-old-space-size=4096 --harmony --trace-deprecation", |
99 | 99 | "travis:integration": "yarn cover:init && yarn cover:integration && yarn cover:report-min", |
100 | 100 | "travis:unit": "yarn cover:init && yarn cover:unit && yarn cover:report-min", |
101 | | - "travis:lint": "yarn lint && yarn tsc", |
| 101 | + "travis:lint": "yarn lint", |
102 | 102 | "travis:benchmark": "yarn benchmark", |
103 | 103 | "appveyor:integration": "yarn cover:init && yarn cover:integration && yarn cover:report-min", |
104 | 104 | "appveyor:unit": "yarn cover:init && yarn cover:unit && yarn cover:report-min", |
105 | 105 | "appveyor:benchmark": "yarn benchmark", |
106 | 106 | "circleci:test": "node node_modules/mocha/bin/mocha --max-old-space-size=4096 --harmony --trace-deprecation test/*.test.js test/*.unittest.js", |
107 | | - "circleci:lint": "yarn lint && yarn tsc", |
| 107 | + "circleci:lint": "yarn lint", |
108 | 108 | "build:examples": "cd examples && node buildAll.js", |
109 | 109 | "pretest": "yarn lint", |
110 | 110 | "prelint": "yarn setup", |
111 | | - "lint": "yarn code-lint && yarn schema-lint", |
| 111 | + "lint": "yarn code-lint && yarn schema-lint && yarn type-lint", |
112 | 112 | "code-lint": "eslint setup lib bin hot buildin \"test/*.js\" \"test/**/webpack.config.js\" \"examples/**/webpack.config.js\" \"schemas/**/*.js\"", |
| 113 | + "type-lint": "tsc --pretty", |
113 | 114 | "fix": "yarn code-lint --fix", |
114 | 115 | "pretty": "prettier \"setup/**/*.js\" \"lib/**/*.js\" \"bin/*.js\" \"hot/*.js\" \"buildin/*.js\" \"test/*.js\" \"test/**/webpack.config.js\" \"examples/**/webpack.config.js\" \"schemas/**/*.js\" \"declarations.d.ts\" --write", |
115 | 116 | "schema-lint": "mocha test/*.lint.js --opts test/lint-mocha.opts", |
|
0 commit comments