2021-05-23 16:46:03 +00:00
|
|
|
---
|
|
|
|
extends:
|
|
|
|
- "@nuxtjs"
|
|
|
|
- plugin:prettier/recommended
|
|
|
|
plugins:
|
|
|
|
- "@typescript-eslint"
|
|
|
|
parserOptions:
|
|
|
|
parser: "@typescript-eslint/parser"
|
|
|
|
rules:
|
|
|
|
"@typescript-eslint/no-unused-vars":
|
|
|
|
- error
|
|
|
|
- args: all
|
|
|
|
argsIgnorePattern: ^_
|
|
|
|
no-unused-vars: off
|
|
|
|
no-console: off
|
2021-06-02 13:40:06 +00:00
|
|
|
camelcase: off
|