Geoffrey Martin-Noble | 552d3f8 | 2021-05-25 17:56:09 -0700 | [diff] [blame] | 1 | # Copyright 2020 The IREE Authors |
Geoffrey Martin-Noble | 3f2bbf6 | 2020-06-26 10:05:07 -0700 | [diff] [blame] | 2 | # |
Geoffrey Martin-Noble | 552d3f8 | 2021-05-25 17:56:09 -0700 | [diff] [blame] | 3 | # Licensed under the Apache License v2.0 with LLVM Exceptions. |
| 4 | # See https://llvm.org/LICENSE.txt for license information. |
| 5 | # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Geoffrey Martin-Noble | 3f2bbf6 | 2020-06-26 10:05:07 -0700 | [diff] [blame] | 6 | |
Geoffrey Martin-Noble | 19cf06a | 2020-06-25 16:27:25 -0700 | [diff] [blame] | 7 | extends: default |
| 8 | |
| 9 | rules: |
| 10 | # These do not appear to be conventional in GitHub actions. |
| 11 | document-end: |
| 12 | present: false |
| 13 | document-start: |
| 14 | present: false |
| 15 | # GitHub actions use "on" for triggers. |
| 16 | truthy: disable |
| 17 | # We have lots of long strings and command lines. |
| 18 | line-length: disable |
Geoffrey Martin-Noble | b22c931 | 2022-07-28 08:47:29 -0700 | [diff] [blame] | 19 | comments: |
| 20 | # Formatters may do this (e.g. Prettier does) and it seems like the most |
| 21 | # trivial thing to get a failing check for. |
| 22 | min-spaces-from-content: 1 |
Scott Todd | 4d74669 | 2023-11-16 09:06:18 -0800 | [diff] [blame] | 23 | # This is not a useful check, especially when disabling entire blocks. |
| 24 | comments-indentation: disable |
Geoffrey Martin-Noble | 19cf06a | 2020-06-25 16:27:25 -0700 | [diff] [blame] | 25 | |
Geoffrey Martin-Noble | b22c931 | 2022-07-28 08:47:29 -0700 | [diff] [blame] | 26 | ignore: /third_party/* |