.eslintrc.json 253 B

1234567891011121314
  1. {
  2. "env": {
  3. "browser": true,
  4. "es2021": true
  5. },
  6. "extends": "eslint:recommended",
  7. "parserOptions": {
  8. "ecmaVersion": 2021, // 使用你需要的最新版本
  9. "sourceType": "module"
  10. },
  11. "rules": {
  12. // 你的自定义规则
  13. }
  14. }