mirror of
https://github.com/zkitter/configs.git
synced 2026-01-08 21:17:59 -05:00
22 lines
597 B
YAML
22 lines
597 B
YAML
plugins: ['@typescript-eslint', 'jest', 'sort']
|
|
extends:
|
|
[
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:sort/recommended',
|
|
'standard-with-typescript',
|
|
'prettier',
|
|
]
|
|
parser: '@typescript-eslint/parser'
|
|
#parserOptions:
|
|
# project: ['./tsconfig.json', './test/tsconfig.json']
|
|
root: true
|
|
rules:
|
|
'@typescript-eslint/ban-ts-comment': warn
|
|
'@typescript-eslint/explicit-function-return-type': off
|
|
'@typescript-eslint/return-await': off
|
|
import/newline-after-import: warn
|
|
no-console: warn
|
|
no-useless-constructor: warn
|
|
env:
|
|
'jest/globals': true |