mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Change instances of **.ext in the .gitignore to just *.ext. I think the intent was to match these patterns in any directory, which is what will happen with simple patterns. The '**' construct is meant to match zero or more full paths, but it must be the sole component of the path. Discovered by a warning from ripgrep. JerryScript-DCO-1.0-Signed-off-by: David Brown david.brown@linaro.org
44 lines
510 B
Plaintext
44 lines
510 B
Plaintext
# Produced files
|
|
.mbedignore
|
|
build/*
|
|
|
|
# IDE related files
|
|
nbproject
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
.idea
|
|
|
|
# Random Trash
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
core
|
|
vgcore.*
|
|
*.orig
|
|
*.directory
|
|
*.patch
|
|
.tags*
|
|
cscope.*
|
|
__pycache__
|
|
*.pyc
|
|
|
|
# ctags and ID database
|
|
tags
|
|
ID
|
|
|
|
# targets
|
|
jerry-targetjs.h
|
|
targets/mbedk64f/libjerry
|
|
targets/mbedk64f/build
|
|
targets/mbedk64f/yotta_modules
|
|
targets/mbedk64f/yotta_targets
|
|
.output
|
|
targets/esp8266/output.map
|
|
targets/esp8266/libs
|
|
|
|
# Generated documentation
|
|
docs/doxygen
|
|
|
|
# Tests
|
|
tests/test262/
|