71 lines
2.3 KiB
JavaScript
71 lines
2.3 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';
|
|
import eslintPluginHeader from 'eslint-plugin-header';
|
|
|
|
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,
|
|
});
|
|
|
|
eslintPluginHeader.rules.header.meta.schema = false;
|
|
|
|
export default [
|
|
{
|
|
ignores: ['**/node_modules', '**/dist', '**/playwright-report', '**/test-results', '**/results'],
|
|
},
|
|
...compat
|
|
.extends('eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:import/recommended')
|
|
.map((config) => ({
|
|
...config,
|
|
files: ['**/*.ts', '**/*.js'],
|
|
})),
|
|
{
|
|
files: ['**/*.ts', '**/*.js'],
|
|
plugins: {
|
|
'@typescript-eslint': typescriptEslint,
|
|
header: eslintPluginHeader,
|
|
},
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node,
|
|
},
|
|
parser: tsParser,
|
|
ecmaVersion: 5,
|
|
sourceType: 'module',
|
|
},
|
|
settings: {
|
|
'import/resolver': {
|
|
typescript: true,
|
|
node: true,
|
|
},
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'no-console': 'error',
|
|
'header/header': [
|
|
'error',
|
|
'line',
|
|
' Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.\n See LICENSE.txt for license information.',
|
|
2,
|
|
],
|
|
'import/order': [
|
|
'error',
|
|
{
|
|
'newlines-between': 'always',
|
|
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
|
|
},
|
|
],
|
|
'import/no-unresolved': 'off',
|
|
},
|
|
},
|
|
];
|