kosmos/akkounts-api
kosmos
/
akkounts-api
Archived
8
1
Fork 0
This repository has been archived on 2022-09-21. You can view files and clone it, but cannot push or open issues or pull requests.
akkounts-api/.eslintrc.yaml

50 lines
901 B
YAML

---
extends: airbnb-base
env:
node: true
mocha: true
es6: true
parser: typescript-eslint-parser
parserOptions:
sourceType: module
ecmaFeatures:
modules: true
rules:
generator-star-spacing:
- 2
- before: true
after: true
no-shadow: 0
import/no-unresolved: 0
import/extensions: 0
require-yield: 0
no-param-reassign: 0
comma-dangle: 0
no-underscore-dangle: 0
no-control-regex: 0
import/no-extraneous-dependencies:
- 2
- devDependencies: true
func-names: 0
no-unused-expressions: 0
prefer-arrow-callback: 1
no-use-before-define:
- 2
- functions: false
space-before-function-paren:
- 2
- always
max-len:
- 2
- 120
- 2
semi:
- 2
- never
strict:
- 2
- global
arrow-parens:
- 2
- always