Why this matters
Reduces surprise and tooling friction.
Follow Rails conventions (plural resource routes, model singular class names, snake_case files).
Reduces surprise and tooling friction.
Side-by-side examples engineers can pattern-match during review.
resources :user
class Users < ApplicationRecord; endresources :users
class User < ApplicationRecord; endget '/User/index'resources :usersFrom the same buckets as this rule.