Skip to content

Commit 99c9cba

Browse files
authored
Merge pull request #26 from ember-template-lint/use-vitest
2 parents bf341b2 + d1f80e3 commit 99c9cba

File tree

9 files changed

+5505
-9543
lines changed

9 files changed

+5505
-9543
lines changed

.eslintrc.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
module.exports = {
22
parser: '@babel/eslint-parser',
3-
plugins: ['node', 'jest', 'prettier'],
3+
plugins: ['node', 'prettier'],
44
extends: [
55
'eslint:recommended',
66
'plugin:node/recommended',
7-
'plugin:jest/recommended',
8-
'plugin:jest/style',
97
'plugin:unicorn/recommended',
108
'prettier',
119
],
@@ -24,9 +22,12 @@ module.exports = {
2422
},
2523
overrides: [
2624
{
27-
files: ['__tests__/**/*.js'],
28-
env: {
29-
jest: true,
25+
files: ['tests/**/*.js'],
26+
parserOptions: {
27+
sourceType: 'module',
28+
},
29+
rules: {
30+
'node/no-unsupported-features/es-syntax': 'off',
3031
},
3132
},
3233
],

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__tests__
1+
tests

jest.config.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)