DEV Community

Discussion on: What can a backend dev do to improve Accessibility?

Collapse
 
nyamador profile image
Desmond • Edited

For backend there are no WCAG guidelines to follow but the most important things to me when I join a new project would be:

  1. Is the backend well documented ?
  2. Do they follow patterns ( example PEP 8 or if you're in the frontend world BEM would be a perfect example) ?
  3. Commented codeπŸ™‚

Although these might not be necessary they really help when the project gets larger.

Collapse
 
alvaromontoro profile image
Alvaro Montoro

Commenting the code is a big one (and often overlooked).

Collapse
 
nyamador profile image
Desmond

Exactly!