選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.eslintrc.js 330B

1234567891011121314151617181920
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. 'extends': [
  7. 'plugin:vue/essential',
  8. '@vue/standard'
  9. ],
  10. rules: {
  11. 'no-console': 'off',
  12. 'no-debugger': 'off',
  13. 'no-trailing-spaces': 0,
  14. indent: 0,
  15. 'space-before-function-paren': 0
  16. },
  17. parserOptions: {
  18. parser: 'babel-eslint'
  19. }
  20. }