New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nokkel/typescript

Package Overview
Dependencies
Maintainers
0
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nokkel/typescript

A typescript styling guide

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Nokkel Typescript Styling Guide

This styling guide provide configuration and rules for typescript, eslint and prettier that can be used in Nokkel 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 @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint eslint-config-prettier eslint-plugin-cypress eslint-plugin-jest eslint-plugin-node eslint-plugin-prettier eslint-plugin-simple-import-sort prettier prettier-eslint typescript typescript-eslint

Then install this package to your project

npm add -D @nokkel/typescript

Then you can add the following files to your Typescript project

.eslintrc.json

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

OR

eslint.config.js

// eslint.config.js
import myconfig from '@nokkel/typescript/eslint.config.mjs';

export default [...myconfig];

To override: https://eslint.org/docs/latest/extend/shareable-configs#overriding-settings-from-shareable-configs

.prettierrc.js

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

We also recommend adding the following

.eslintignore

dist/

tsconfig.browser.json

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

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

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/@nokkel/typescript/tsconfig.json",
  "compilerOptions": {
    "baseUrl": "./",
    "outDir": "dist",
    "paths": {
      "@/*": ["src/*"]
    }
    // Add any overrides/extensions here...
  }
}

Enjoy!

Keywords

FAQs

Package last updated on 16 Aug 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc