Skip to content

Instantly share code, notes, and snippets.

@andrewborisov
Last active May 14, 2019 09:55
Show Gist options
  • Save andrewborisov/efe17186f6d524aab3793782450075c7 to your computer and use it in GitHub Desktop.
Save andrewborisov/efe17186f6d524aab3793782450075c7 to your computer and use it in GitHub Desktop.
creating-ts-lint-rule project
{
"name": "creating-custom-ts-rule",
"version": "1.0.0",
"description": "Creating custom ts rule from scratch",
"main": "index.js",
"scripts": {
"buildRule": "tsc custom-ts-rules/moduleImportsOrderRule.ts --lib es6"
},
"author": "Andrei Borisov",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tsutils": "^3.10.0",
"typescript": "^3.4.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"preset": "ts-jest",
"testMatch": [
"**/**/*.test.ts"
],
"testEnvironment": "node"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment