mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-21 23:53:52 +00:00
Update eslint config
This commit is contained in:
parent
214112aafb
commit
aac69dce2c
38
.eslintrc.js
38
.eslintrc.js
|
@ -7,10 +7,12 @@ module.exports = {
|
|||
|
||||
extends: [
|
||||
// vue/recommended includes all higher levels (vue/strongly-recommended, vue/essential)
|
||||
'plugin:vue/recommended',
|
||||
'plugin:vue/vue3-recommended',
|
||||
'@vue/typescript/recommended',
|
||||
'@vue/prettier',
|
||||
'@vue/prettier/@typescript-eslint',
|
||||
'eslint:recommended',
|
||||
'@vue/eslint-config-typescript',
|
||||
'@vue/eslint-config-prettier',
|
||||
// '@vue/prettier/@typescript-eslint',
|
||||
],
|
||||
|
||||
parser: 'vue-eslint-parser',
|
||||
|
@ -28,6 +30,36 @@ module.exports = {
|
|||
// disable eslint no-shadow as it's causing false positives on typescript enums
|
||||
'no-shadow': 'off',
|
||||
'prettier/prettier': ['error'],
|
||||
// '@typescript-eslint/naming-convention': [
|
||||
// 'error',
|
||||
// {
|
||||
// selector: 'default',
|
||||
// format: ['camelCase'],
|
||||
// },
|
||||
// {
|
||||
// selector: 'variable',
|
||||
// format: ['camelCase', 'UPPER_CASE'],
|
||||
// },
|
||||
// {
|
||||
// selector: 'parameter',
|
||||
// format: ['camelCase'],
|
||||
// leadingUnderscore: 'allow',
|
||||
// },
|
||||
// {
|
||||
// selector: 'memberLike',
|
||||
// modifiers: ['private'],
|
||||
// format: ['camelCase'],
|
||||
// leadingUnderscore: 'require',
|
||||
// },
|
||||
// {
|
||||
// selector: 'typeLike',
|
||||
// format: ['PascalCase'],
|
||||
// },
|
||||
// {
|
||||
// selector: 'class',
|
||||
// format: ['PascalCase'],
|
||||
// },
|
||||
// ],
|
||||
},
|
||||
|
||||
overrides: [
|
||||
|
|
Loading…
Reference in New Issue
Block a user