* web: Prep ESBuild plugin for publish. * prettier-config: Update deps. * eslint-config: Update deps. * docusaurus-config: Update deps. * docs: Update deps. * docs: Enable linter. * docs: Lint. * web/sfe: Clean up types. Prep for monorepo. * esbuild-plugin-live-reload: Update deps. * web: Tidy ESLint, script commands. * web: Fix logs. * web: Lint. * web: Split compile check from cached version.
		
			
				
	
	
		
			18 lines
		
	
	
		
			372 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			372 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { DefaultIgnorePatterns, createESLintPackageConfig } from "@goauthentik/eslint-config";
 | 
						|
 | 
						|
// @ts-check
 | 
						|
 | 
						|
/**
 | 
						|
 * ESLint configuration for authentik's monorepo.
 | 
						|
 */
 | 
						|
const ESLintConfig = createESLintPackageConfig({
 | 
						|
    ignorePatterns: [
 | 
						|
        // ---
 | 
						|
        ...DefaultIgnorePatterns,
 | 
						|
        ".docusaurus/",
 | 
						|
        "./build",
 | 
						|
    ],
 | 
						|
});
 | 
						|
 | 
						|
export default ESLintConfig;
 |