Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 421 Bytes

File metadata and controls

25 lines (20 loc) · 421 Bytes

eslint-config-typescript

KeetaNetwork standard typescript ESLint config

Usage

$ npm install -SD @keetanetwork/eslint-config-typescript
// .eslint.config.mjs
import keetanetworkConfig from '@keetanetwork/eslint-config-typescript';

export default [
	...keetanetworkConfig,
	{
		languageOptions: {
			parserOptions: {
				project: ['tsconfig.json', 'deployment/tsconfig.json']
			}
		}
	}
];