You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
297 B

3 years ago
  1. module.exports = {
  2. root: true,
  3. env: {
  4. browser: true,
  5. node: true
  6. },
  7. parserOptions: {
  8. parser: '@babel/eslint-parser',
  9. requireConfigFile: false
  10. },
  11. extends: [
  12. '@nuxtjs',
  13. 'plugin:nuxt/recommended'
  14. ],
  15. plugins: [
  16. ],
  17. // add your custom rules here
  18. rules: {}
  19. }