reblock
Version:
Build interactive Slack surfaces with React
17 lines (15 loc) • 338 B
JavaScript
import pluginJs from '@eslint/js'
import tseslint from 'typescript-eslint'
/** @type {import('eslint').Linter.Config[]} */
export default [
{
files: ['/src/**/*.{js,mjs,cjs,ts}'],
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
{
rules: {
'@typescript-eslint/no-namespace': 'off',
},
},
]