aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
blob: c6179770a852b9593d85095a53bd82ed4ff79dc5 (plain)
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
#
# Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#

#Ignore cmake build directory
**/build/
**/build[-_]*/

#Ignore documentation build output.
**/_build*/

#Ignore pyhton intermediate files.
**/__pycache__/

#Ignore IDE settings
**/.vscode
# vscode/clangd
**/.clangd
**/compile_commands.json

**/.cproject
**/.project
**/.pydevproject
**/.settings/