mirror of
https://github.com/Discreetly/server.git
synced 2026-01-07 19:53:55 -05:00
19 lines
511 B
JavaScript
19 lines
511 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
sourceType: 'module',
|
|
tsconfigRootDir: __dirname,
|
|
project: 'tsconfig.json',
|
|
},
|
|
plugins: ['@typescript-eslint/eslint-plugin'],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended-type-checked',
|
|
'plugin:@typescript-eslint/stylistic-type-checked',
|
|
],
|
|
ignorePatterns: ['node_modules', 'dist'],
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "warn"
|
|
}
|
|
}; |