forked from rapidsai/cuxfilter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 787 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (39 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# SPDX-FileCopyrightText: Copyright (c) 2019-2026, NVIDIA CORPORATION. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
[tool.ruff]
line-length = 79
target-version = "py311"
include = ["*.py"]
extend-exclude = [
"__init__.py",
"thirdparty/**",
"_build/**",
"buck-out/**",
"build/**",
"dist/**",
]
force-exclude = true
[tool.ruff.lint]
ignore = [
# line too long due to copyright notice
"E501",
]
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = [
# module level import not at top of cell
"E402",
# unused import
"F401",
# wildcard import
"F403",
# usage of wildcard import
"F405",
]
"notebooks/**" = [
# unused import
"F401",
# wildcard import
"F403",
# usage of wildcard import
"F405",
]