Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add support for cutting-lines and footers with blank lines #274

Merged
merged 5 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 0 additions & 59 deletions .eslintrc.json

This file was deleted.

82 changes: 82 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
---
KevinDeJong-TomTom marked this conversation as resolved.
Show resolved Hide resolved
plugins:
- jest
- "@typescript-eslint"
- import

extends:
- plugin:github/recommended
- plugin:import/recommended
- plugin:import/typescript

env:
node: true
es6: true
jest/globals: true

settings:
import/resolver:
typescript: true
node: true

parser: "@typescript-eslint/parser"
parserOptions:
ecmaVersion: 9
sourceType: module
project: "./tsconfig.json"

rules:
i18n-text/no-en: off
eslint-comments/no-use: off
filenames/match-regex: off
import/no-namespace: off
no-console: off
one-var: off
"@typescript-eslint/no-unused-vars":
- error
- argsIgnorePattern: "^_"
varsIgnorePattern: "^_"
caughtErrorsIgnorePattern: "^_"
no-unused-vars: off
"@typescript-eslint/explicit-member-accessibility":
- error
- accessibility: no-public
"@typescript-eslint/no-require-imports": error
"@typescript-eslint/array-type": error
"@typescript-eslint/await-thenable": error
"@typescript-eslint/ban-ts-comment": error
camelcase: off
"@typescript-eslint/consistent-type-assertions": error
"@typescript-eslint/explicit-function-return-type":
- error
- allowExpressions: true
"@typescript-eslint/func-call-spacing": [error, never]
"@typescript-eslint/no-array-constructor": error
"@typescript-eslint/no-empty-interface": error
"@typescript-eslint/no-explicit-any": error
"@typescript-eslint/no-extraneous-class": error
"@typescript-eslint/no-for-in-array": error
"@typescript-eslint/no-inferrable-types": error
"@typescript-eslint/no-misused-new": error
"@typescript-eslint/no-namespace": error
"@typescript-eslint/no-non-null-assertion": warn
"@typescript-eslint/no-unnecessary-qualifier": error
"@typescript-eslint/no-unnecessary-type-assertion": error
"@typescript-eslint/no-useless-constructor": error
"@typescript-eslint/no-var-requires": error
"@typescript-eslint/prefer-for-of": warn
"@typescript-eslint/prefer-function-type": warn
"@typescript-eslint/prefer-includes": error
"@typescript-eslint/prefer-string-starts-ends-with": error
"@typescript-eslint/promise-function-async": error
"@typescript-eslint/require-array-sort-compare": error
"@typescript-eslint/restrict-plus-operands": error
semi: off
"@typescript-eslint/type-annotation-spacing": error
"@typescript-eslint/unbound-method": error
import/extensions: # see https://github.com/import-js/eslint-plugin-import/blob/HEAD/docs/rules/extensions.md
- error
- never
- pattern:
json: ignorePackages

Loading
Loading