mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-07-07 17:45:01 +00:00
80 lines
2 KiB
JavaScript
80 lines
2 KiB
JavaScript
import typescriptEslint from '@typescript-eslint/eslint-plugin';
|
|
import globals from 'globals';
|
|
import tsParser from '@typescript-eslint/parser';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import js from '@eslint/js';
|
|
import { FlatCompat } from '@eslint/eslintrc';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
allConfig: js.configs.all,
|
|
});
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
'**/*.cjs',
|
|
'**/.DS_Store',
|
|
'**/node_modules',
|
|
'build',
|
|
'package',
|
|
'**/.env',
|
|
'**/.env.*',
|
|
'!**/.env.example',
|
|
'**/pnpm-lock.yaml',
|
|
'**/package-lock.json',
|
|
'**/yarn.lock',
|
|
],
|
|
},
|
|
...compat.extends('eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'),
|
|
{
|
|
plugins: {
|
|
'@typescript-eslint': typescriptEslint,
|
|
},
|
|
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
},
|
|
|
|
parser: tsParser,
|
|
ecmaVersion: 2020,
|
|
sourceType: 'module',
|
|
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
},
|
|
},
|
|
|
|
rules: {
|
|
strict: 2,
|
|
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
|
|
'@typescript-eslint/strict-boolean-expressions': [
|
|
2,
|
|
{
|
|
allowString: false,
|
|
allowNumber: false,
|
|
},
|
|
],
|
|
|
|
'prettier/prettier': [
|
|
'error',
|
|
{
|
|
endOfLine: 'auto',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
];
|