選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.eslintrc.json 341B

12345678910111213141516171819
  1. {
  2. "env": {
  3. "browser": true,
  4. "commonjs": true,
  5. "es2021": true
  6. },
  7. "parserOptions": {
  8. "ecmaVersion": 12
  9. },
  10. "rules": {
  11. "space-before-function-paren": [
  12. 2,
  13. {
  14. "anonymous": "ignore",
  15. "named": "never"
  16. }
  17. ]
  18. }
  19. }