mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-12-06 07:48:06 +08:00
89 lines
2.3 KiB
JavaScript
89 lines
2.3 KiB
JavaScript
// See: https://eslint.org/docs/latest/use/configure/configuration-files
|
|
|
|
import { fixupPluginRules } from '@eslint/compat'
|
|
import { FlatCompat } from '@eslint/eslintrc'
|
|
import js from '@eslint/js'
|
|
import typescriptEslint from '@typescript-eslint/eslint-plugin'
|
|
import tsParser from '@typescript-eslint/parser'
|
|
import _import from 'eslint-plugin-import'
|
|
import jest from 'eslint-plugin-jest'
|
|
import prettier from 'eslint-plugin-prettier'
|
|
import globals from 'globals'
|
|
|
|
const compat = new FlatCompat({
|
|
baseDirectory: import.meta.dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
allConfig: js.configs.all
|
|
})
|
|
|
|
export default [
|
|
{
|
|
ignores: ['**/coverage', '**/dist', '**/linter', '**/node_modules']
|
|
},
|
|
...compat.extends(
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:jest/recommended',
|
|
'plugin:prettier/recommended'
|
|
),
|
|
{
|
|
plugins: {
|
|
import: fixupPluginRules(_import),
|
|
jest,
|
|
prettier,
|
|
'@typescript-eslint': typescriptEslint
|
|
},
|
|
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node,
|
|
...globals.jest,
|
|
Atomics: 'readonly',
|
|
SharedArrayBuffer: 'readonly'
|
|
},
|
|
|
|
parser: tsParser,
|
|
ecmaVersion: 2023,
|
|
sourceType: 'module',
|
|
|
|
parserOptions: {
|
|
projectService: {
|
|
allowDefaultProject: [
|
|
'__fixtures__/*.ts',
|
|
'__tests__/*.ts',
|
|
'eslint.config.mjs',
|
|
'jest.config.js',
|
|
'rollup.cleanup.config.ts',
|
|
'rollup.main.config.ts'
|
|
],
|
|
maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: 32
|
|
},
|
|
tsconfigRootDir: import.meta.dirname
|
|
}
|
|
},
|
|
|
|
settings: {
|
|
'import/resolver': {
|
|
typescript: {
|
|
alwaysTryTypes: true,
|
|
project: 'tsconfig.json'
|
|
}
|
|
}
|
|
},
|
|
|
|
rules: {
|
|
camelcase: 'off',
|
|
'eslint-comments/no-use': 'off',
|
|
'eslint-comments/no-unused-disable': 'off',
|
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
|
|
'i18n-text/no-en': 'off',
|
|
'import/no-namespace': 'off',
|
|
'no-console': 'off',
|
|
'no-shadow': 'off',
|
|
'no-unused-vars': 'off',
|
|
'prettier/prettier': 'error'
|
|
}
|
|
}
|
|
]
|