UNPKG

@tsdotnet/array-procedure

Version:

[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/tsdotnet/array-procedure/blob/master/LICENSE) ![npm-publish](https://github.com/tsdotnet/array-procedure/workflows/npm-publish/badge.svg) [![npm ve

24 lines (22 loc) 491 B
import eslint from '@eslint/js'; import tseslint from 'typescript-eslint'; export default tseslint.config( eslint.configs.recommended, ...tseslint.configs.recommended, { rules: { "semi": ["warn", "always"], "indent": ["warn", "tab", { "SwitchCase": 1 }], "@typescript-eslint/no-explicit-any": "off" }, files: ['src/**/*.ts'], languageOptions: { ecmaVersion: 2022, sourceType: 'module', globals: { console: 'readonly', process: 'readonly' } } } );