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.
 
 
 
 
 
 

14 lines
256 B

  1. module.exports = {
  2. root: true,
  3. extends: "airbnb/base",
  4. // required to lint *.vue files
  5. plugins: [
  6. 'html'
  7. ],
  8. // add your custom rules here
  9. 'rules': {
  10. 'max-len': 0,
  11. 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
  12. }
  13. }