16 lines
415 B
Plaintext
16 lines
415 B
Plaintext
import type { Oas3Rule } from '../../visitors';
|
|
|
|
export const NoServerTrailingSlash: Oas3Rule = () => {
|
|
return {
|
|
Server(server, { report, location }) {
|
|
if (!server.url) return;
|
|
if (server.url.endsWith('/') && server.url !== '/') {
|
|
report({
|
|
message: 'Server `url` should not have a trailing slash.',
|
|
location: location.child(['url']),
|
|
});
|
|
}
|
|
},
|
|
};
|
|
};
|