Skip to content

Commit

Permalink
chore: enable ESLint for __tests__ dir (#8370)
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed May 28, 2022
1 parent 8f18fe7 commit cd21abf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -15,7 +15,7 @@
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "prettier --write .",
"lint": "eslint packages/*/{src,types}/** playground/**/__tests__/**/*.ts scripts/**",
"lint": "eslint packages/*/{src,types,__tests__}/** playground/**/__tests__/**/*.ts scripts/**",
"typecheck": "tsc -p scripts --noEmit && tsc -p playground --noEmit",
"test": "run-s test-unit test-serve test-build",
"test-serve": "vitest run -c vitest.config.e2e.ts",
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/__tests__/cli.spec.ts
@@ -1,9 +1,8 @@
/* eslint-disable node/no-extraneous-import */
import { join } from 'path'
import type { ExecaSyncReturnValue, SyncOptions } from 'execa'
import { commandSync } from 'execa'
import { mkdirpSync, readdirSync, remove, writeFileSync } from 'fs-extra'
import { join } from 'path'
import { test, expect, beforeAll, afterEach } from 'vitest'
import { afterEach, beforeAll, expect, test } from 'vitest'

const CLI_PATH = join(__dirname, '..')

Expand Down

0 comments on commit cd21abf

Please sign in to comment.