|
| 1 | +/* |
| 2 | + * The MIT License (MIT) |
| 3 | + * |
| 4 | + * Copyright (c) 2025 Karl STEIN |
| 5 | + * |
| 6 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | + * of this software and associated documentation files (the "Software"), to deal |
| 8 | + * in the Software without restriction, including without limitation the rights |
| 9 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | + * copies of the Software, and to permit persons to whom the Software is |
| 11 | + * furnished to do so, subject to the following conditions: |
| 12 | + * |
| 13 | + * The above copyright notice and this permission notice shall be included in all |
| 14 | + * copies or substantial portions of the Software. |
| 15 | + * |
| 16 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | + * FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 22 | + * SOFTWARE. |
| 23 | + */ |
| 24 | + |
| 25 | +import eslint from '@eslint/js' |
| 26 | +import { defineConfig } from 'eslint/config' |
| 27 | +import tseslint from 'typescript-eslint' |
| 28 | + |
| 29 | +export default defineConfig([ |
| 30 | + { |
| 31 | + ignores: [ |
| 32 | + '.idea/**', |
| 33 | + 'node_modules/**', |
| 34 | + 'cjs/**', |
| 35 | + 'esm/**', |
| 36 | + 'coverage/**', |
| 37 | + 'test/**' |
| 38 | + ] |
| 39 | + }, |
| 40 | + |
| 41 | + // Base JS recommended rules |
| 42 | + eslint.configs.recommended, |
| 43 | + |
| 44 | + // TypeScript recommended rules |
| 45 | + ...tseslint.configs.recommended, |
| 46 | + |
| 47 | + { |
| 48 | + files: ['**/*.ts'], |
| 49 | + languageOptions: { |
| 50 | + parser: tseslint.parser, |
| 51 | + parserOptions: { |
| 52 | + project: true, |
| 53 | + ecmaVersion: 'latest', |
| 54 | + tsconfigRootDir: import.meta.dirname |
| 55 | + } |
| 56 | + }, |
| 57 | + rules: { |
| 58 | + '@typescript-eslint/ban-ts-comment': 'warn' |
| 59 | + } |
| 60 | + } |
| 61 | +]) |
0 commit comments