mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-25 23:08:28 +00:00
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['@redplanethq/eslint-config/internal.js'],
|
|
parser: '@typescript-eslint/parser',
|
|
rules: {
|
|
'no-redeclare': 'off',
|
|
},
|
|
};
|