Use forms with or without client-side JavaScript--no code duplication required!
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  1. {
  2. "root": true,
  3. "extends": [
  4. "lxsmnsyc/typescript/react"
  5. ],
  6. "rules": {
  7. "no-tabs": "off",
  8. "indent": ["error", "tab"],
  9. "react/jsx-indent-props": ["error", "tab"],
  10. "react/jsx-indent": ["error", "tab"],
  11. "react/jsx-props-no-spreading": "off",
  12. "@typescript-eslint/no-misused-promises": "off",
  13. "@typescript-eslint/no-namespace": "off",
  14. "max-classes-per-file": "off",
  15. "import/prefer-default-export": "off"
  16. },
  17. "parserOptions": {
  18. "project": "./tsconfig.eslint.json"
  19. }
  20. }