https://github.com/angular/angular
Raw File
Tip revision: 2c7ff82f31361c7435649ee5284f5aa6691de2cf authored by Andrew Kushnir on 22 July 2020, 16:36:00 UTC
release: cut the v10.0.5 release
Tip revision: 2c7ff82
format.ts
import {FormatConfig} from '../dev-infra/format/config';

/**
 * Configuration for the `ng-dev format` command.
 */
export const format: FormatConfig = {
  'clang-format': {
    'matchers': [
      '**/*.{js,ts}',
      // TODO: burn down format failures and remove aio and integration exceptions.
      '!aio/**',
      '!integration/**',
      // Both third_party and .yarn are directories containing copied code which should
      // not be modified.
      '!third_party/**',
      '!.yarn/**',
      // Do not format d.ts files as they are generated
      '!**/*.d.ts',
    ]
  },
  'buildifier': true
};
back to top