Socket
Socket
Sign inDemoInstall

@kodasoftware/typescript

Package Overview
Dependencies
189
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @kodasoftware/typescript

A typescript styling guide


Version published
Maintainers
1
Created

Readme

Source

Koda Software Typescript Styling Guide

This styling guide provide configuration and rules for typescript, eslint and prettier that can be used in Koda Software projects to ensure they meet these recommended stylistic choices. It does not inform code quality, merely the look of how code should be written to ensure it is consistent and easy to interpret for developers.

Using this style guide in your project

In order to use this guide you should first install the following dependencies in your project

npm add -D eslint prettier prettier-eslint typescript eslint-config-prettier eslint-plugin-node eslint-plugin-prettier eslint-plugin-simple-import-sort @typescript-eslint/eslint-plugin @typescript-eslint/parser

Then install this package to your project

npm add -D @kodasoftware/typescript

Then you can add the following files to your Typescript project

.eslintrc.json

{
  "extends": "./node_modules/@kodasoftware/typescript/.eslintrc.json"
  // Add any overrides/extensions here...
}

.prettierrc.js

module.exports = {
  ...require('@kodasoftware/typescript/.prettierrc.json')
  // And any overrides/extensions here...
}

We also recommend adding the following

.eslintignore

dist/

tsconfig.json

This is an example of a typescript configuration you can put into your project that extends the typescript configuration of this library.

{
  "extends": "./node_modules/@kodasoftware/typescript/tsconfig.json",
  "compilerOptions": {
    "baseUrl": "./",
    "outDir": "dist",
    "paths": {
      "@/*": ["./src/*"]
    }
    // Add any overrides/extensions here...
  }
}

Enjoy!

Keywords

FAQs

Last updated on 18 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc