您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
210 B

3 年前
  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. };