Skip to content

Commit 04552b8

Browse files
authoredAug 12, 2023
Add new TypeScript extensions (.mts, .cts) (#728)
1 parent ff4b5d8 commit 04552b8

File tree

6 files changed

+25
-1
lines changed

6 files changed

+25
-1
lines changed
 

‎config/plugins.cjs

+2
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,8 @@ module.exports = {
314314
// TypeScript doesn't yet support using extensions and fails with error TS2691.
315315
'.ts': 'never',
316316
'.tsx': 'never',
317+
'.mts': 'never',
318+
'.cts': 'never',
317319
},
318320
],
319321
'n/no-mixed-requires': [

‎lib/constants.js

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ const MERGE_OPTIONS_CONCAT = [
2424
const TYPESCRIPT_EXTENSION = [
2525
'ts',
2626
'tsx',
27+
'mts',
28+
'cts',
2729
];
2830

2931
const DEFAULT_EXTENSION = [

‎readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ Setting this to an object enables the resolver and passes the object as configur
315315

316316
## TypeScript
317317

318-
XO will automatically lint TypeScript files (`.ts`, `.d.ts` and `.tsx`) with the rules defined in [eslint-config-xo-typescript#use-with-xo](https://github.com/xojs/eslint-config-xo-typescript#use-with-xo).
318+
XO will automatically lint TypeScript files (`.ts`, `.mts`, `.cts`, `.d.ts` and `.tsx`) with the rules defined in [eslint-config-xo-typescript#use-with-xo](https://github.com/xojs/eslint-config-xo-typescript#use-with-xo).
319319

320320
XO will handle the [@typescript-eslint/parser `project` option](https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser#parseroptionsproject) automatically even if you don't have a `tsconfig.json` in your project.
321321

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('extra-semicolon');;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('extra-semicolon');;

‎test/lint-files.js

+18
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,24 @@ test.serial('typescript files', async t => {
216216
),
217217
);
218218

219+
t.true(
220+
hasRule(
221+
results,
222+
path.resolve('fixtures/typescript/child/extra-semicolon.mts'),
223+
'@typescript-eslint/no-extra-semi',
224+
rulesMeta,
225+
),
226+
);
227+
228+
t.true(
229+
hasRule(
230+
results,
231+
path.resolve('fixtures/typescript/child/extra-semicolon.cts'),
232+
'@typescript-eslint/no-extra-semi',
233+
rulesMeta,
234+
),
235+
);
236+
219237
t.true(
220238
hasRule(
221239
results,

0 commit comments

Comments
 (0)
Please sign in to comment.