frequi_origin/.eslintrc.js

30 lines
720 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: [
2020-05-04 04:31:12 +00:00
'plugin:vue/essential',
2020-05-18 18:49:30 +00:00
// 'plugin:vue/recommended',
2020-05-04 04:50:09 +00:00
'@vue/airbnb',
'prettier',
'plugin:prettier-vue/recommended',
'prettier/vue',
2020-06-05 09:04:53 +00:00
'prettier/@typescript-eslint',
2020-06-05 09:06:02 +00:00
'plugin:@typescript-eslint/recommended',
2020-06-05 09:04:53 +00:00
'@vue/typescript',
'@vue/typescript/recommended',
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-05-18 18:49:30 +00:00
},
};