frequi_origin/.eslintrc.js

28 lines
772 B
JavaScript
Raw Normal View History

2020-05-04 04:31:12 +00:00
module.exports = {
root: true,
env: {
2020-05-18 18:49:30 +00:00
node: true,
2020-05-04 04:31:12 +00:00
},
2020-05-18 18:49:30 +00:00
extends: [
// vue/recommended includes all higher levels (vue/strongly-recommended, vue/essential)
2020-08-31 15:43:44 +00:00
'plugin:vue/recommended',
2020-05-04 04:50:09 +00:00
'@vue/airbnb',
2020-06-05 09:04:53 +00:00
'@vue/typescript/recommended',
2020-09-08 09:53:25 +00:00
'@vue/prettier',
'@vue/prettier/@typescript-eslint',
2020-05-04 04:31:12 +00:00
],
2020-06-20 14:12:28 +00:00
parser: 'vue-eslint-parser',
2020-05-04 04:31:12 +00:00
parserOptions: {
2020-06-20 14:12:28 +00:00
parser: '@typescript-eslint/parser',
sourceType: 'module',
2020-06-05 09:04:53 +00:00
ecmaVersion: 2020,
2020-05-04 04:31:12 +00:00
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
2020-05-04 05:28:53 +00:00
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
2020-06-20 15:25:52 +00:00
'class-methods-use-this': 0,
2020-09-08 09:53:25 +00:00
// disable eslint no-shadow as it's causing false positives on typescript enums
'no-shadow': 'off',
2020-05-18 18:49:30 +00:00
},
};