Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore(deps-dev): Bump eslint from 8.34.0 to 9.20.0 #866

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 0 additions & 70 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: Run linting
Expand Down
7 changes: 5 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,15 @@ repos:
args: [--py39-plus]

- repo: https://github.com/pre-commit/mirrors-eslint
rev: v9.19.0
rev: v9.20.0
hooks:
- id: eslint
additional_dependencies:
- eslint@8.20.0
- eslint@9.20.0
- [email protected]
- [email protected]
- "@eslint/[email protected]"
- "@eslint/[email protected]"
args: ["--fix"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.14.1
Expand Down
73 changes: 73 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
import globals from 'globals'
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 [...compat.extends('google'), {
languageOptions: {
globals: {
...globals.browser,
...globals.commonjs,
},
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {
'valid-jsdoc': 'off',
'block-scoped-var': 'error',
'block-spacing': 'error',
'brace-style': 'error',
'camelcase': 'off',
'class-methods-use-this': 'error',
'consistent-return': 'error',
'default-case': 'error',
'default-case-last': 'error',
'default-param-last': 'error',
'grouped-accessor-pairs': 'error',
'indent': ['error', 4],
'linebreak-style': ['error', 'unix'],
'max-len': ['error', {
code: 120,
}],
'no-caller': 'error',
'no-console': 'error',
'no-empty-function': 'error',
'no-eval': 'error',
'no-extra-parens': 'error',
'no-labels': 'error',
'no-new': 'error',
'no-new-func': 'error',
'no-new-wrappers': 'error',
'no-return-await': 'error',
'no-script-url': 'error',
'no-self-compare': 'error',
'no-shadow': 'error',
'no-throw-literal': 'error',
'no-undefined': 'error',
'no-unreachable-loop': 'error',
'no-unused-expressions': 'off',
'no-useless-backreference': 'error',
'no-useless-concat': 'error',
'no-var': 'error',
'object-curly-spacing': ['error', 'always', {
arraysInObjects: true,
}],
'prefer-const': 'error',
'prefer-promise-reject-errors': 'error',
'require-atomic-updates': 'error',
'require-await': 'error',
'require-jsdoc': 0,
'semi': ['error', 'never'],
'quotes': ['error', 'single'],
'yoda': 'error',
},
}]
Loading
Loading