@node-ts/code-standards
An opinionated set of linting and build configurations for typescript projects to build modern, maintainable TypeScript projects.
Linting
The linting rules aim to produce terse, neat and consistent TypeScript code. This is valuable in any repo that has more than one contributor, but single author projects may also find it useful.
Below shows a small example of the code produced with this style:
import { S3 } from 'aws-sdk'
export class ObjectStorageService {
constructor (
private readonly s3 = new S3()
) {
}
async upload (bucket: string, key: string, body: Buffer): Promise<void> {
const putObjectRequest: S3.Types.PutObjectRequest = {
Bucket: bucket,
Key: key,
Body: body
}
await this.s3.putObject(putObjectRequest).promise()
}
}
TypeScript Configuration
TypeScript options have been set in tsconfig.json
that target Node v8 and up. These options can be overridden for web projects that target browsers.
Installation
-
Install into your project along with tslint
and typescript
npm i @node-ts/code-standards tslint typescript --save-dev
-
Copy .editorconfig
into the root of your project. This will let your code editor confirm to many of the whitespacing rules automatically. See Editor Config on setting up your code editor for the first time.
-
Create a tslint.json
file in the root of your project with the following contents:
{
"extends": "./node_modules/@node-ts/code-standards/tslint.json"
}
-
Create a tsconfig.json
file in the root of your project with the following contents. You may wish to extend this with further options
{
"extends": "./node_modules/@node-ts/code-standards/tsconfig.json"
}
-
Add the following to the scripts
block in your project's package.json
:
{
"lint": "tslint --project tsconfig.json 'src/**/*.ts'",
"lint:fix": "npm lint --fix"
}
IDE Configuration
IDE defaults for line spacing, whitespace etc can be set by placing an .editorconfig
file (like the one in this package) into the root of your project. This is used by the Editor Config plugin of your preferred browser to set such defaults for your project.
This helps ensure any characters inserted by your editor conforms to the linting rules in this package.
Overriding Rules
Individual rules can be overridden if they do not suit the particular project they're being imported into. This is common for web sites that need to transpile slightly differently to a regular node application.
In tslint.json
Individual linting rules cna be overridden by specifying the updated rule in your local tslint.json
file as such:
{
"extends": "./node_modules/@node-ts/code-standards/tslint.json",
"rules": {
"semicolon": [true, "always"]
}
}
In tsconfig.json
Similar to linting, TypeScript configuration options can be overridden by specifying the updated values in the local tsconfig.json
file.
For example:
{
"extends": "./node_modules/@node-ts/code-standards/tsconfig.json",
"compilerOptions": {
"target": "es6",
"lib": ["es7"]
}
}