Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 270 Bytes

markdown-eslint-lint-test.md

File metadata and controls

18 lines (11 loc) · 270 Bytes

Test Markdown file to test ESLint code block linting

JS

import path from 'node:path';

const path = path.join('a/b/c', 'd'); // => 'a/b/c/d'

TS

import path from 'node:path';

const path: string = path.join('a/b/c', 'd'); // => 'a/b/c/d'