@tsdotnet/array-procedure
Version:
[](https://github.com/tsdotnet/array-procedure/blob/master/LICENSE)  [![npm ve
24 lines (22 loc) • 491 B
JavaScript
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'
}
}
}
);