import { Rule } from '@angular-devkit/schematics'; import { FormatCodeSettings } from 'typescript'; export declare const formatCodeSettings: FormatCodeSettings; /** * Applies `prettier` formatting to the generated content * * If project has its own config it will be used, otherwise a default config is used */ export declare function prettier(): Rule; /** * Applies `eslint` fixing to the generated content * * If project has its own config it will be used, otherwise a default config is used * WARNING! `prettier/prettier` rules doesn't seem to apply as it can't defer the correct parser */ export declare function eslint(): Rule; export declare function format(): Rule;