Created
April 27, 2022 23:41
-
-
Save babldev/9e0e770fc541711b47b587d6aa45000f to your computer and use it in GitHub Desktop.
Revisions
-
babldev created this gist
Apr 27, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.1.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - id: check-added-large-files - repo: https://github.com/pre-commit/mirrors-eslint rev: v8.12.0 hooks: - id: eslint files: \.[jt]sx?$ # *.js, *.jsx, *.ts and *.tsx types: [file] args: ['--fix'] - repo: local hooks: - id: typescript-check name: typescript-check entry: npx tsc language: system types_or: [ts, tsx] pass_filenames: false