mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
43 lines
971 B
JavaScript
43 lines
971 B
JavaScript
module.exports = {
|
|
root: true,
|
|
|
|
env: {
|
|
node: true,
|
|
},
|
|
|
|
extends: [
|
|
// vue/recommended includes all higher levels (vue/strongly-recommended, vue/essential)
|
|
'plugin:vue/recommended',
|
|
'@vue/airbnb',
|
|
'@vue/typescript/recommended',
|
|
'@vue/prettier',
|
|
'@vue/prettier/@typescript-eslint',
|
|
],
|
|
|
|
parser: 'vue-eslint-parser',
|
|
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
sourceType: 'module',
|
|
ecmaVersion: 2020,
|
|
},
|
|
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'class-methods-use-this': 0,
|
|
// disable eslint no-shadow as it's causing false positives on typescript enums
|
|
'no-shadow': 'off',
|
|
'prettier/prettier': ['error'],
|
|
},
|
|
|
|
overrides: [
|
|
{
|
|
files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'],
|
|
env: {
|
|
jest: true,
|
|
},
|
|
},
|
|
],
|
|
};
|