-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jeff MAURY <[email protected]>
- Loading branch information
Showing
18 changed files
with
900 additions
and
244 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,220 @@ | ||
/********************************************************************** | ||
* Copyright (C) 2024 Red Hat, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
***********************************************************************/ | ||
|
||
import globals from 'globals'; | ||
import js from '@eslint/js'; | ||
import typescriptLint from 'typescript-eslint'; | ||
import tsParser from '@typescript-eslint/parser'; | ||
import importPlugin from 'eslint-plugin-import'; | ||
import { fixupConfigRules, fixupPluginRules } from '@eslint/compat'; | ||
import { fileURLToPath } from 'node:url'; | ||
import path from 'node:path'; | ||
import { FlatCompat } from '@eslint/eslintrc'; | ||
import unicorn from 'eslint-plugin-unicorn'; | ||
import noNull from 'eslint-plugin-no-null'; | ||
import sonarjs from 'eslint-plugin-sonarjs'; | ||
import etc from 'eslint-plugin-etc'; | ||
import redundantUndefined from 'eslint-plugin-redundant-undefined'; | ||
import simpleImportSort from 'eslint-plugin-simple-import-sort'; | ||
import fileProgress from 'eslint-plugin-file-progress'; | ||
|
||
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, | ||
}); | ||
|
||
const TYPESCRIPT_PROJECTS = [ | ||
'./tsconfig.json', | ||
]; | ||
|
||
export default [ | ||
{ | ||
ignores: [ | ||
'*.config.*js', | ||
'**/*.config.*js', | ||
'**/dist/**/*', | ||
'**/test-resources', | ||
'**/__mocks__/', | ||
'**/coverage/', | ||
'extensions/*.ts', | ||
'scripts/**', | ||
], | ||
}, | ||
js.configs.recommended, | ||
...typescriptLint.configs.recommended, | ||
sonarjs.configs.recommended, | ||
...fixupConfigRules( | ||
compat.extends('plugin:import/recommended', 'plugin:import/typescript', 'plugin:etc/recommended'), | ||
), | ||
{ | ||
plugins: { | ||
// compliant v9 plug-ins | ||
unicorn, | ||
'file-progress': fileProgress, | ||
// non-compliant v9 plug-ins | ||
etc: fixupPluginRules(etc), | ||
import: fixupPluginRules(importPlugin), | ||
'no-null': fixupPluginRules(noNull), | ||
'redundant-undefined': fixupPluginRules(redundantUndefined), | ||
'simple-import-sort': fixupPluginRules(simpleImportSort), | ||
}, | ||
settings: { | ||
'import/resolver': { | ||
typescript: true, | ||
node: true, | ||
|
||
'eslint-import-resolver-custom-alias': { | ||
alias: { | ||
'/@': './src', | ||
'/@gen': './src-generated', | ||
}, | ||
|
||
extensions: ['.ts'], | ||
packages: ['packages/*', 'extensions/*'], | ||
}, | ||
}, | ||
'file-progress/activate': { | ||
progress: { | ||
hide: false, | ||
successMessage: 'Lint done...', | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
linterOptions: { | ||
reportUnusedDisableDirectives: 'off', | ||
}, | ||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
}, | ||
// parser: tsParser, | ||
sourceType: 'module', | ||
parserOptions: { | ||
warnOnUnsupportedTypeScriptVersion: false, | ||
project: TYPESCRIPT_PROJECTS, | ||
}, | ||
}, | ||
}, | ||
{ | ||
rules: { | ||
eqeqeq: 'error', | ||
'prefer-promise-reject-errors': 'error', | ||
semi: ['error', 'always'], | ||
'comma-dangle': ['warn', 'always-multiline'], | ||
|
||
quotes: [ | ||
'error', | ||
'single', | ||
{ | ||
allowTemplateLiterals: true, | ||
}, | ||
], | ||
|
||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', caughtErrors: 'none' }], | ||
'@typescript-eslint/no-var-requires': 'off', | ||
'@typescript-eslint/consistent-type-imports': 'error', | ||
'@typescript-eslint/no-explicit-any': 'error', | ||
'@typescript-eslint/await-thenable': 'error', | ||
'@typescript-eslint/no-floating-promises': ['error', { ignoreVoid: false }], | ||
'@typescript-eslint/no-misused-promises': 'error', | ||
'@typescript-eslint/prefer-optional-chain': 'error', | ||
'@typescript-eslint/explicit-function-return-type': 'error', | ||
'@typescript-eslint/prefer-nullish-coalescing': [ | ||
'error', | ||
{ | ||
ignoreConditionalTests: true, | ||
}, | ||
], | ||
'@typescript-eslint/no-require-imports': 'off', | ||
|
||
'file-progress/activate': 'warn', | ||
|
||
// disabled import/namespace rule as the plug-in is not fully compatible using the compat mode | ||
'import/namespace': 'off', | ||
'import/no-duplicates': 'error', | ||
'import/no-unresolved': 'off', | ||
'import/default': 'off', | ||
'import/no-named-as-default-member': 'off', | ||
'import/no-named-as-default': 'off', | ||
'import/first': 'error', | ||
'import/newline-after-import': 'error', | ||
'import/no-extraneous-dependencies': 'error', | ||
|
||
// unicorn custom rules | ||
'unicorn/prefer-node-protocol': 'error', | ||
|
||
// sonarjs custom rules | ||
'sonarjs/cognitive-complexity': 'off', | ||
'sonarjs/no-duplicate-string': 'off', | ||
'sonarjs/no-empty-collection': 'off', | ||
'sonarjs/no-small-switch': 'off', | ||
// redundant with @typescript-eslint/no-unused-vars | ||
'sonarjs/no-ignored-exceptions': 'off', | ||
'sonarjs/no-nested-functions': 'off', | ||
'sonarjs/todo-tag': 'off', | ||
'sonarjs/no-nested-functions': 'off', | ||
'sonarjs/sonar-max-params': 'off', | ||
'sonarjs/no-nested-conditional': 'off', | ||
'sonarjs/no-empty-function': 'off', | ||
'sonarjs/no-base-to-string': 'off', | ||
'sonarjs/unnecessary-character-escapes': 'off', | ||
'sonarjs/different-types-comparison': 'off', | ||
'sonarjs/new-cap': 'off', | ||
'sonarjs/no-invariant-returns': 'off', | ||
'sonarjs/updated-loop-counter': 'off', | ||
'sonarjs/no-redundant-type-constituents': 'off', | ||
'sonarjs/function-return-type': 'off', | ||
'sonarjs/no-lonely-if': 'off', | ||
'sonarjs/deprecation': 'off', | ||
'sonarjs/use-type-alias': 'off', | ||
|
||
// failing with the AST parser | ||
'sonarjs/sonar-no-fallthrough': 'off', | ||
'sonarjs/prefer-enum-initializers': 'off', | ||
|
||
// etc custom rules | ||
'etc/no-deprecated': 'off', | ||
// disable this rule as it's not compliant with eslint v9 | ||
'etc/no-commented-out-code': 'off', | ||
|
||
// redundant-undefined custom rules | ||
'redundant-undefined/redundant-undefined': 'error', | ||
|
||
// simple-import-sort custom rules | ||
'simple-import-sort/imports': 'error', | ||
'simple-import-sort/exports': 'error', | ||
}, | ||
}, | ||
|
||
{ | ||
files: ['**/*.spec.ts'], | ||
|
||
rules: { | ||
'sonarjs/no-hardcoded-ip': 'off', | ||
'sonarjs/no-clear-text-protocols': 'off', | ||
'sonarjs/slow-regex': 'off', | ||
'sonarjs/publicly-writable-directories': 'off', | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.