mirror of
https://github.com/nick-fields/retry.git
synced 2026-02-09 22:58:02 +00:00
8 lines
238 B
JavaScript
8 lines
238 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
parser: '@typescript-eslint/parser',
|
||
|
|
plugins: ['@typescript-eslint'],
|
||
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
|
||
|
|
ignorePatterns: ['**/*.js', 'dist/'],
|
||
|
|
};
|