I've checked the docs and don't believe this can currently be done, but would it be possible to create a cop that enforced the first describe of a spec has been defined as RSpec.describe?
So something like:
# Bad
describe SomeClass do
describe "#does_something" do
# ...
end
end
# Good
RSpec.describe SomeClass do
describe "#does_something" do
# ...
end
end