Skip to content

Commit

Permalink
chore: update eslint to v9
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Jan 30, 2025
1 parent 860851c commit f10b0ff
Show file tree
Hide file tree
Showing 6 changed files with 1,356 additions and 466 deletions.
152 changes: 0 additions & 152 deletions .eslintrc.js

This file was deleted.

191 changes: 191 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
import importPlugin from 'eslint-plugin-import';
import tsStylistic from '@stylistic/eslint-plugin-ts';
import eslint from '@eslint/js';
import globals from 'globals';
import tsEslint from 'typescript-eslint';

export default tsEslint.config(
{
ignores: ['**/node_modules', '**/dist', '**/coverage', '**/*.{js,mjs}', '**/*.d.ts'],
},
eslint.configs.recommended,
tsEslint.configs.recommended,
{
plugins: {
'@typescript-eslint': tsEslint.plugin,
import: importPlugin,
'@stylistic': tsStylistic,
},
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
parser: tsEslint.parser,
ecmaVersion: 2023,
sourceType: 'module',
parserOptions: {
project: 'tsconfig.json',
},
},
rules: {
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/prefer-optional-chain': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-floating-promises': ['error', { checkThenables: false }],
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unsafe-declaration-merging': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/naming-convention': ['error', {
selector: 'default', format: null,
}, {
selector: 'variable', format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
}, {
selector: 'typeLike', format: ['PascalCase'],
}],
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/adjacent-overload-signatures': 'error',
'@typescript-eslint/consistent-type-assertions': 'error',
'@typescript-eslint/no-array-constructor': 'error',
'@typescript-eslint/no-empty-function': 'error',
'@typescript-eslint/no-inferrable-types': 'error',
'@typescript-eslint/no-misused-new': 'error',
'@typescript-eslint/no-namespace': ['error', { allowDeclarations: true }],
'@typescript-eslint/no-this-alias': 'error',
'@typescript-eslint/no-use-before-define': 'error',
'@typescript-eslint/no-var-requires': 'error',
'@typescript-eslint/triple-slash-reference': 'error',
'@stylistic/type-annotation-spacing': 'error',
'@typescript-eslint/array-type': 'error',
'@typescript-eslint/no-unnecessary-qualifier': 'error',
'@typescript-eslint/no-unnecessary-type-arguments': 'off',
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-empty-object-type': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off',
'@stylistic/quotes': ['error', 'single', { avoidEscape: true, allowTemplateLiterals: true }],
'@stylistic/semi': ['error', 'always'],
'@typescript-eslint/no-useless-constructor': 'error',
'@typescript-eslint/no-redeclare': ['error'],
'@stylistic/member-delimiter-style': ['error', {
multiline: { delimiter: 'semi', requireLast: true },
singleline: { delimiter: 'semi', requireLast: false },
}],
'@stylistic/space-before-function-paren': ['error', {
anonymous: 'always',
named: 'never',
asyncArrow: 'always',
}],
'@stylistic/space-infix-ops': 'error',
'@stylistic/comma-spacing': 'error',
'arrow-parens': ['error', 'as-needed'],
'arrow-spacing': 'error',
'space-infix-ops': 'off',
'no-var': 'error',
'prefer-const': 'error',
'prefer-rest-params': 'error',
'prefer-spread': 'error',
'constructor-super': 'error',
'for-direction': 'error',
'getter-return': 'error',
'import/no-duplicates': ['error', { 'prefer-inline': true }],
'no-async-promise-executor': 'error',
'no-case-declarations': 'error',
'no-class-assign': 'error',
'no-compare-neg-zero': 'error',
'no-cond-assign': 'error',
'no-const-assign': 'error',
'no-constant-condition': 'error',
'no-control-regex': 'error',
'no-debugger': 'error',
'no-delete-var': 'error',
'no-dupe-args': 'error',
'no-dupe-keys': 'error',
'no-duplicate-case': 'error',
'no-empty': 'error',
'no-empty-character-class': 'error',
'no-empty-pattern': 'error',
'no-ex-assign': 'error',
'no-extra-boolean-cast': 'error',
'no-extra-semi': 'error',
'no-fallthrough': 'error',
'no-func-assign': 'error',
'no-global-assign': 'error',
'no-inner-declarations': 'error',
'no-invalid-regexp': 'error',
'no-irregular-whitespace': 'error',
'no-misleading-character-class': 'error',
'no-mixed-spaces-and-tabs': 'error',
'no-new-symbol': 'error',
'no-obj-calls': 'error',
'no-octal': 'error',
'no-prototype-builtins': 'error',
'no-redeclare': 'off',
'no-regex-spaces': 'error',
'no-self-assign': 'error',
'no-shadow-restricted-names': 'error',
'no-sparse-arrays': 'error',
'no-this-before-super': 'error',
'no-undef': 'error',
'no-unexpected-multiline': 'error',
'no-unreachable': 'error',
'no-unsafe-finally': 'error',
'no-unsafe-negation': 'error',
'no-unused-labels': 'error',
'no-useless-catch': 'error',
'no-useless-escape': 'error',
'no-with': 'error',
'require-yield': 'error',
'use-isnan': 'error',
'valid-typeof': 'error',
'comma-dangle': ['error', 'always-multiline'],
'dot-notation': 'error',
'eol-last': 'error',
eqeqeq: ['error', 'always', { null: 'ignore' }],
'no-console': 'error',
'no-duplicate-imports': 'off',
'no-multiple-empty-lines': 'error',
'no-throw-literal': 'error',
'no-trailing-spaces': 'error',
'no-undef-init': 'error',
'object-shorthand': 'error',
'quote-props': ['error', 'consistent-as-needed'],
'spaced-comment': 'error',
yoda: 'error',
curly: 'error',
'object-curly-spacing': ['error', 'always'],
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
'padded-blocks': ['error', { classes: 'always' }],
'no-else-return': 'error',
'block-spacing': ['error', 'always'],
'space-before-blocks': ['error', 'always'],
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
'keyword-spacing': ['error', { before: true, after: true }],
'space-in-parens': ['error', 'never'],
},
},
{
files: ['tests/**/*'],
languageOptions: {
globals: {
...globals.jest,
},
parserOptions: {
project: 'tests/tsconfig.json',
},
},
rules: {
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/consistent-type-imports': 'off',
'no-console': ['error', { allow: ['time', 'timeEnd'] }],
'no-control-regex': 'off',
'no-empty': 'off',
'import/no-duplicates': 'off',
},
},
);
7 changes: 1 addition & 6 deletions jest.config.ts → jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import type { Config } from '@jest/types';

// Sync object
const config: Config.InitialOptions = {
export default {
testTimeout: 30000,
transform: {
'^.+\\.tsx?$': ['ts-jest', {
Expand All @@ -18,5 +15,3 @@ const config: Config.InitialOptions = {
'<rootDir>/package.json',
],
};

export default config;
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@
"@nestjs/core": "^11.0.5",
"@nestjs/platform-express": "^11.0.5",
"@nestjs/testing": "^11.0.5",
"@stylistic/eslint-plugin-ts": "^3.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "~7.18.0",
"@typescript-eslint/parser": "~7.18.0",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "5.7.3"
"typescript": "5.7.3",
"typescript-eslint": "^8.22.0"
},
"commitlint": {
"extends": [
Expand Down
Loading

0 comments on commit f10b0ff

Please sign in to comment.