@kode-frontend/eslint-config
Version:
Shareable ESLint config enforcing best practices
21 lines (15 loc) • 366 B
JavaScript
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
extends: [require.resolve('../shared/base')],
env: {
browser: true,
es2020: true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
tsconfigRootDir: __dirname,
},
globals: {},
ignorePatterns: ['dist', '.eslintrc.cjs'],
}