1.0.0 • Published 9 months ago

ts-standard-eslint-flat-config v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

ts-standard-eslint-flat-config

This library provides an eslint flat config file based on the ts-standard library.

Why?

ts-standard doesn't integrate with idea products, but eslint does. This config file allows using ts-standard rules and configuration in any idea that works with eslint.

usage

In your index.js import this library and spread the config into your config

import tsStandardEslintFlatConfig from 'ts-standard-eslint-flat-config'

export default [
  ...tsStandardEslintFlatConfig,
  //your config goes here
]