@thingbound/eslint-config-typescript

ESLint config used for @thingbound TypeScript projects

Usage no npm install needed!

<script type="module">
  import thingboundEslintConfigTypescript from 'https://cdn.skypack.dev/@thingbound/eslint-config-typescript';
</script>

README

@thingbound/eslint-config-typescript

ESLint configuration for TypeScript projects in the @thingbound organization.

This configuration tries to be fairly lenient and error on things that may cause bugs. Warnings are provided for some style issues and other things that may be ignored.

Install eslint and the configuration:

$ npm install --save-dev eslint @thingbound/eslint-config-typescript

A small .eslintrc.js is then required to setup the linting:

{
  parserOptions: {
    project: './tsconfig.eslint.json'
  },
  extends: [
    '@thingbound/eslint-config-typescript'
  ]
}