latest.d.ts 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * @license
  3. * Copyright 2016 Palantir Technologies, Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. export declare const rules: {
  18. "align": {
  19. options: string[];
  20. };
  21. "no-invalid-template-strings": boolean;
  22. "no-sparse-arrays": boolean;
  23. "no-object-literal-type-assertion": boolean;
  24. "prefer-conditional-expression": boolean;
  25. "prefer-object-spread": boolean;
  26. "no-duplicate-variable": (string | boolean)[];
  27. "no-this-assignment": boolean;
  28. "no-duplicate-imports": boolean;
  29. "space-within-parens": (number | boolean)[];
  30. "no-submodule-imports": boolean;
  31. "whitespace": {
  32. options: string[];
  33. };
  34. "ban-comma-operator": boolean;
  35. "jsdoc-format": {
  36. options: string;
  37. };
  38. "no-duplicate-switch-case": boolean;
  39. "no-implicit-dependencies": boolean;
  40. "no-return-await": boolean;
  41. };
  42. declare const xtends = "tslint:recommended";
  43. export { xtends as extends };