Changelog
2.0.0 (2020-04-02)
This is a major rewrite of the tool. Based on community guidance, we've switched from using tslint to eslint. Please read all of the steps below to upgrade.
eslint
With the shift to eslint
, gts
now will format and lint JavaScript as well as TypeScript. Upgrading will require a number of manual steps. To format JavaScript and TypeScript, you can run:
$ npx gts fix
To specify only TypeScript:
$ npx gts fix '**/*.ts'
tslint.json
This file is no longer used, and can lead to confusion.
.eslintrc.json
Now that we're using eslint, you need to extend the eslint configuration baked into the module. Create a new file named .eslintrc.json
, and paste the following:
{
"extends": "./node_modules/gts"
}
.eslintignore
The .eslintignore
file lets you ignore specific directories. This tool now lints and formats JavaScript, so it's really important to ignore your build directory! Here is an example of a .eslintignore
file:
**/node_modules
build/
The underlying linter was changed, so naturally there are going to be a variety of rule changes along the way. To see the full list, check out .eslintrc.json.
Node.js 8.x is now end of life - this module now requires Ndoe.js 10.x and up.