31 lines
430 B
YAML
31 lines
430 B
YAML
---
|
|
extends:
|
|
- eslint:recommended
|
|
- plugin:import/errors
|
|
- plugin:import/warnings
|
|
|
|
plugins:
|
|
- sort-imports-es6-autofix
|
|
|
|
parserOptions:
|
|
ecmaVersion: 8
|
|
sourceType: module
|
|
|
|
globals:
|
|
pageState: writable
|
|
pageContent: writable
|
|
realPages: writable
|
|
module: writable
|
|
|
|
|
|
rules:
|
|
no-unused-vars:
|
|
- 2
|
|
- argsIgnorePattern: ^_
|
|
sort-imports-es6-autofix/sort-imports-es6:
|
|
- 2
|
|
|
|
env:
|
|
browser: true
|
|
es6: true
|