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.

17 lines
210 B

3 years ago
  1. 'use strict';
  2. module.exports = {
  3. extends: [
  4. './index.js',
  5. 'plugin:node/recommended',
  6. ],
  7. env: {
  8. node: true,
  9. },
  10. ignorePatterns: [
  11. 'node_modules/',
  12. ],
  13. plugins: [
  14. 'node',
  15. ],
  16. };