We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8425b13 commit 9ba4d74Copy full SHA for 9ba4d74
eslint.config.js
@@ -2,7 +2,11 @@ import pluginSecurity from 'eslint-plugin-security'
2
import neostandard, { resolveIgnoresFromGitignore, plugins } from 'neostandard'
3
4
export default [
5
- ...neostandard({ ignores: resolveIgnoresFromGitignore() }),
+ ...neostandard({
6
+ ignores: resolveIgnoresFromGitignore(),
7
+ ts: true, // Enable TypeScript support,
8
+ filesTs: ['src/**/*.ts', '__tests__/**/*.ts']
9
+ }),
10
plugins.n.configs['flat/recommended-script'],
11
pluginSecurity.configs.recommended,
12
{
0 commit comments