Skip to content

Commit

Permalink
feat(linter): wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Aug 14, 2024
1 parent b0a3e07 commit 7e00ad8
Show file tree
Hide file tree
Showing 69 changed files with 1,406 additions and 428 deletions.
2 changes: 1 addition & 1 deletion e2e/angular/src/misc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('Move Angular Project', () => {
expect(moveOutput).toContain(`CREATE ${newPath}/tsconfig.app.json`);
expect(moveOutput).toContain(`CREATE ${newPath}/tsconfig.json`);
expect(moveOutput).toContain(`CREATE ${newPath}/tsconfig.spec.json`);
expect(moveOutput).toContain(`CREATE ${newPath}/.eslintrc.json`);
expect(moveOutput).toContain(`CREATE ${newPath}/eslint.config.js`);
expect(moveOutput).toContain(`CREATE ${newPath}/public/favicon.ico`);
expect(moveOutput).toContain(`CREATE ${newPath}/src/index.html`);
expect(moveOutput).toContain(`CREATE ${newPath}/src/main.ts`);
Expand Down
1 change: 1 addition & 0 deletions e2e/esbuild/src/esbuild.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ describe('EsBuild Plugin', () => {
expect(
readJson(`dist/libs/${parentLib}/package.json`).dependencies
).toEqual({
'jsonc-eslint-parser': expect.any(String),
// Don't care about the versions, just that they exist
rambda: expect.any(String),
lodash: expect.any(String),
Expand Down
28 changes: 22 additions & 6 deletions e2e/eslint/src/linter-legacy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,17 @@ import {
} from '@nx/e2e/utils';

describe('Linter (legacy)', () => {
describe('Integrated', () => {
describe('Integrated (eslintrc config)', () => {
let originalEslintUseFlatConfigVal: string | undefined;
const myapp = uniq('myapp');
const mylib = uniq('mylib');

let projScope;

beforeAll(() => {
projScope = newProject({
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';

newProject({
packages: ['@nx/react', '@nx/js', '@nx/eslint'],
});
runCLI(`generate @nx/react:app ${myapp} --tags=validtag`, {
Expand All @@ -31,7 +34,10 @@ describe('Linter (legacy)', () => {
env: { NX_ADD_PLUGINS: 'false' },
});
});
afterAll(() => cleanupProject());
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
cleanupProject();
});

describe('linting errors', () => {
let defaultEslintrc;
Expand Down Expand Up @@ -93,9 +99,19 @@ describe('Linter (legacy)', () => {
});
});

describe('Flat config', () => {
describe('eslintrc convert to flat config', () => {
let originalEslintUseFlatConfigVal: string | undefined;
const packageManager = getSelectedPackageManager() || 'pnpm';

beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
});
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
});

beforeEach(() => {
process.env.NX_ADD_PLUGINS = 'false';
});
Expand Down
17 changes: 17 additions & 0 deletions e2e/eslint/src/linter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ import {
import * as ts from 'typescript';

describe('Linter', () => {
let originalEslintUseFlatConfigVal: string | undefined;
beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
});
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
});

describe('Integrated', () => {
const myapp = uniq('myapp');
const mylib = uniq('mylib');
Expand Down Expand Up @@ -524,8 +534,15 @@ describe('Linter', () => {
});

describe('flat config', () => {
let envVar: string | undefined;
beforeAll(() => {
runCLI(`generate @nx/eslint:convert-to-flat-config`);
envVar = process.env.ESLINT_USE_FLAT_CONFIG;
// Now that we have converted the existing configs to flat config we need to clear the explicitly set env var to allow it to infer things from the root config file type
delete process.env.ESLINT_USE_FLAT_CONFIG;
});
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = envVar;
});

it('should generate new projects using flat config', () => {
Expand Down
10 changes: 10 additions & 0 deletions e2e/js/src/js-packaging.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ import {
import { join } from 'path';

describe('packaging libs', () => {
let originalEslintUseFlatConfigVal: string | undefined;
beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
});
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
});

let scope: string;

beforeEach(() => {
Expand Down
3 changes: 2 additions & 1 deletion e2e/next/src/next-appdir.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ describe('Next.js App Router', () => {

afterAll(() => cleanupProject());

it('should be able to generate and build app with default App Router', async () => {
// TODO: this currently fails on eslint v9 because the stable eslint-plugin-next does not support it, despite the PR being merged many months ago
xit('should be able to generate and build app with default App Router', async () => {
const appName = uniq('app');
const jsLib = uniq('tslib');

Expand Down
3 changes: 2 additions & 1 deletion e2e/next/src/next-playwright-standalone-eslint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ describe('nextjs standalone playwright linting', () => {

afterEach(() => cleanupProject());

it('should work', async () => {
// TODO: this currently fails on eslint v9 because the stable eslint-plugin-next does not support it, despite the PR being merged many months ago
xit('should work', async () => {
const wsName = uniq('next');
const appName = uniq('app');
runCreateWorkspace(wsName, {
Expand Down
3 changes: 2 additions & 1 deletion e2e/next/src/next.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ describe('Next.js Applications', () => {
}).not.toThrow();
}, 300_000);

it('should support --js flag', async () => {
// TODO: re-enable, this currently fails on ESLint 9 because of https://github.com/import-js/eslint-plugin-import/issues/2948 I am guessing...
xit('should support --js flag', async () => {
const appName = uniq('app');

runCLI(
Expand Down
10 changes: 10 additions & 0 deletions e2e/node/src/node.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ function getData(port, path = '/api'): Promise<any> {
});
}

let originalEslintUseFlatConfigVal: string | undefined;
beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
});
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
});

describe('Node Applications', () => {
beforeAll(() => {
originalEnvPort = process.env.PORT;
Expand Down
5 changes: 5 additions & 0 deletions e2e/nuxt/src/nuxt.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ import {

describe('Nuxt Plugin', () => {
const app = uniq('app');
let originalEslintUseFlatConfigVal: string | undefined;

beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
newProject({
packages: ['@nx/nuxt'],
unsetProjectNameAndRootFormat: false,
Expand All @@ -27,6 +31,7 @@ describe('Nuxt Plugin', () => {
afterAll(() => {
killPorts();
cleanupProject();
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
});

it('should build application', async () => {
Expand Down
5 changes: 5 additions & 0 deletions e2e/nx-init/src/nx-init-react.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ import {

describe('nx init (for React - legacy)', () => {
let pmc: ReturnType<typeof getPackageManagerCommand>;
let originalEslintUseFlatConfigVal: string | undefined;

beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
pmc = getPackageManagerCommand({
packageManager: getSelectedPackageManager(),
});
Expand All @@ -31,6 +35,7 @@ describe('nx init (for React - legacy)', () => {
});

afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
delete process.env.NX_ADD_PLUGINS;
});

Expand Down
13 changes: 11 additions & 2 deletions e2e/nx/src/extras.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,17 @@ import {
import { join } from 'path';

describe('Extra Nx Misc Tests', () => {
beforeAll(() => newProject({ packages: ['@nx/web', '@nx/js', '@nx/react'] }));
afterAll(() => cleanupProject());
let originalEslintUseFlatConfigVal: string | undefined;
beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
newProject({ packages: ['@nx/web', '@nx/js', '@nx/react'] });
});
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
cleanupProject();
});

describe('Output Style', () => {
it('should stream output', async () => {
Expand Down
11 changes: 8 additions & 3 deletions e2e/nx/src/import.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,14 @@ describe('Nx Import', () => {
execSync(`git commit -am "initial commit"`, {
cwd: tempViteProjectPath,
});
execSync(`git checkout -b main`, {
cwd: tempViteProjectPath,
});

try {
execSync(`git checkout -b main`, {
cwd: tempViteProjectPath,
});
} catch {
// This fails if git is already configured to have `main` branch, but that's OK
}

const remote = tempViteProjectPath;
const ref = 'main';
Expand Down
15 changes: 10 additions & 5 deletions e2e/nx/src/workspace-legacy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,19 @@ import {
uniq,
} from '@nx/e2e/utils';

let proj: string;

describe('@nx/workspace:convert-to-monorepo', () => {
beforeEach(() => {
proj = newProject({ packages: ['@nx/react', '@nx/js'] });
let originalEslintUseFlatConfigVal: string | undefined;
beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
newProject({ packages: ['@nx/react', '@nx/js'] });
});

afterEach(() => cleanupProject());
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
cleanupProject();
});

it('should convert a standalone webpack and jest react project to a monorepo (legacy)', async () => {
const reactApp = uniq('reactapp');
Expand Down
12 changes: 11 additions & 1 deletion e2e/nx/src/workspace.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,22 @@ import { join } from 'path';

let proj: string;

let originalEslintUseFlatConfigVal: string | undefined;
beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
});
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
});

describe('@nx/workspace:convert-to-monorepo', () => {
beforeEach(() => {
proj = newProject({ packages: ['@nx/react', '@nx/js'] });
});

afterEach(() => cleanupProject());
afterAll(() => cleanupProject());

it('should be convert a standalone vite and playwright react project to a monorepo', async () => {
const reactApp = uniq('reactapp');
Expand Down
10 changes: 10 additions & 0 deletions e2e/playwright/src/playwright.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ import {

const TEN_MINS_MS = 600_000;

let originalEslintUseFlatConfigVal: string | undefined;
beforeAll(() => {
// Opt into legacy .eslintrc config format for these tests
originalEslintUseFlatConfigVal = process.env.ESLINT_USE_FLAT_CONFIG;
process.env.ESLINT_USE_FLAT_CONFIG = 'false';
});
afterAll(() => {
process.env.ESLINT_USE_FLAT_CONFIG = originalEslintUseFlatConfigVal;
});

describe('Playwright E2E Test runner', () => {
const pmc = getPackageManagerCommand({
packageManager: getSelectedPackageManager(),
Expand Down
9 changes: 6 additions & 3 deletions e2e/react/src/react-vite.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ describe('Build React applications and libraries with Vite', () => {
cleanupProject();
});

it('should test and lint app with bundler=vite and compiler=babel', async () => {
// TODO: failing because of eslint-plugin-import with eslint v9
xit('should test and lint app with bundler=vite and compiler=babel', async () => {
const viteApp = uniq('viteapp');

runCLI(
Expand All @@ -39,7 +40,8 @@ describe('Build React applications and libraries with Vite', () => {
checkFilesExist(`dist/apps/${viteApp}/index.html`);
}, 300_000);

it('should test and lint app with bundler=vite and compiler=swc', async () => {
// TODO: failing because of eslint-plugin-import with eslint v9
xit('should test and lint app with bundler=vite and compiler=swc', async () => {
const viteApp = uniq('viteapp');

runCLI(
Expand All @@ -60,7 +62,8 @@ describe('Build React applications and libraries with Vite', () => {
checkFilesExist(`dist/apps/${viteApp}/index.html`);
}, 300_000);

it('should test and lint app with bundler=vite and inSourceTests', async () => {
// TODO: failing because of eslint-plugin-import with eslint v9
xit('should test and lint app with bundler=vite and inSourceTests', async () => {
const viteApp = uniq('viteapp');
const viteLib = uniq('vitelib');

Expand Down
6 changes: 4 additions & 2 deletions e2e/react/src/react.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ describe('React Applications', () => {
}
}, 250_000);

it('should be able to generate a react app + lib (with CSR and SSR)', async () => {
// TODO: failing because of eslint-plugin-import with eslint v9
xit('should be able to generate a react app + lib (with CSR and SSR)', async () => {
const appName = uniq('app');
const libName = uniq('lib');
const libWithNoComponents = uniq('lib');
Expand Down Expand Up @@ -176,7 +177,8 @@ describe('React Applications', () => {
]);
}, 250_000);

it('should be able to add a redux slice', async () => {
// TODO: failing because of eslint-plugin-import with eslint v9
xit('should be able to add a redux slice', async () => {
const appName = uniq('app');
const libName = uniq('lib');

Expand Down
9 changes: 5 additions & 4 deletions nx-dev/nx-dev-e2e/src/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Page, test, expect } from '@playwright/test';
import { expect, test } from '@playwright/test';
/**
* Assert a text is present on the visited page.
* @param page
Expand All @@ -11,11 +11,12 @@ export function assertTextOnPage(
title: string,
selector: string = 'h1'
): void {
test.describe(path, () =>
// eslint-disable-next-line playwright/valid-title
test.describe(path, () => {
test(`should display "${title}"`, async ({ page }) => {
await page.goto(path);
const locator = page.locator(selector);
await expect(locator).toContainText(title);
})
);
});
});
}
Loading

0 comments on commit 7e00ad8

Please sign in to comment.