mirror of
https://github.com/nick-fields/retry.git
synced 2026-02-10 07:05:29 +00:00
* patch: setup prettier * patch: move .commitlintrc.js to .config * patch: config lint-staged and update husky * patch: configure eslint as well
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/'],
|
|
};
|