markdowny/.eslintrc.yml

42 lines
684 B
YAML
Raw Normal View History

2018-08-11 22:32:06 +00:00
env:
es6: true
node: true
extends: 'eslint:recommended'
2021-02-04 05:30:00 +00:00
parser: '@typescript-eslint/parser'
2018-08-11 22:32:06 +00:00
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: 2018
sourceType: module
plugins:
2021-02-04 05:30:00 +00:00
- '@typescript-eslint/eslint-plugin'
2018-08-11 22:32:06 +00:00
rules:
2021-02-04 05:30:00 +00:00
'@typescript-eslint/member-ordering':
2018-08-11 22:32:06 +00:00
- error
2021-02-04 05:30:00 +00:00
'@typescript-eslint/no-unused-vars':
2018-08-11 22:32:06 +00:00
- off
2021-02-04 05:30:00 +00:00
'@typescript-eslint/no-var-requires':
2018-08-11 22:32:06 +00:00
- error
indent:
- error
- 4
linebreak-style:
- error
- unix
quotes:
- error
- double
semi:
- error
- always
# Eventually
no-console:
- off
# We are having trouble with these two, so we turn them off.
no-undef:
- off
no-unused-vars:
- off