1
0
Fork 0
VaultUI/.eslintrc.yml

31 lines
430 B
YAML
Raw Normal View History

2021-04-18 10:42:57 +01:00
---
extends:
- eslint:recommended
- plugin:import/errors
- plugin:import/warnings
2021-05-03 09:25:42 +01:00
plugins:
- sort-imports-es6-autofix
2021-04-18 10:42:57 +01:00
parserOptions:
ecmaVersion: 8
sourceType: module
globals:
pageState: writable
pageContent: writable
realPages: writable
2021-04-24 16:26:31 +01:00
module: writable
2021-04-18 10:42:57 +01:00
rules:
no-unused-vars:
- 2
- argsIgnorePattern: ^_
2021-05-03 09:25:42 +01:00
sort-imports-es6-autofix/sort-imports-es6:
- 2
2021-04-18 10:42:57 +01:00
env:
browser: true
es6: true