Skip to content

Commit 89a5df3

Browse files
authored
Added JSCPD ignore file for .github/workflows directory
1 parent 15f2ae1 commit 89a5df3

File tree

5 files changed

+49
-7
lines changed

5 files changed

+49
-7
lines changed

.github/workflows/commit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- main
1111

1212
env:
13-
python_version: "3.10"
13+
python_version: "3.10.5"
1414

1515
jobs:
1616
test:

.github/workflows/security.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- cron: '2 3 * * *'
1313

1414
env:
15-
python_version: "3.10"
15+
python_version: "3.10.5"
1616

1717
jobs:
1818
analyze:

.gitignore

+36-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
*.tar
22
super-linter.log
33

4-
# Created by https://www.toptal.com/developers/gitignore/api/vim,emacs,vs,python,node,docker
5-
# Edit at https://www.toptal.com/developers/gitignore?templates=vim,emacs,vs,python,node,docker
6-
7-
#!! ERROR: docker is undefined. Use list command to see defined gitignore types !!#
4+
# Created by https://www.toptal.com/developers/gitignore/api/vim,emacs,vs,python,node,macos
5+
# Edit at https://www.toptal.com/developers/gitignore?templates=vim,emacs,vs,python,node,macos
86

97
### Emacs ###
108
# -*- mode: gitignore; -*-
@@ -57,6 +55,39 @@ flycheck_*.el
5755
/network-security.data
5856

5957

58+
### macOS ###
59+
# General
60+
.DS_Store
61+
.AppleDouble
62+
.LSOverride
63+
64+
# Icon must end with two \r
65+
Icon
66+
67+
68+
# Thumbnails
69+
._*
70+
71+
# Files that might appear in the root of a volume
72+
.DocumentRevisions-V100
73+
.fseventsd
74+
.Spotlight-V100
75+
.TemporaryItems
76+
.Trashes
77+
.VolumeIcon.icns
78+
.com.apple.timemachine.donotpresent
79+
80+
# Directories potentially created on remote AFP share
81+
.AppleDB
82+
.AppleDesktop
83+
Network Trash Folder
84+
Temporary Items
85+
.apdisk
86+
87+
### macOS Patch ###
88+
# iCloud generated files
89+
*.icloud
90+
6091
### Node ###
6192
# Logs
6293
logs
@@ -726,4 +757,4 @@ MigrationBackup/
726757
# Ionide (cross platform F# VS Code tools) working folder
727758
.ionide/
728759

729-
# End of https://www.toptal.com/developers/gitignore/api/vim,emacs,vs,python,node,docker
760+
# End of https://www.toptal.com/developers/gitignore/api/vim,emacs,vs,python,node,macos

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ name = "pypi"
55

66
[packages]
77

8+
89
[dev-packages]
910
docker = "*"
1011
gitpython = "*"

etc/.jscpd.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"threshold": 0,
3+
"reporters": [
4+
"consoleFull"
5+
],
6+
"ignore": [
7+
"**/.github/workflows/**"
8+
],
9+
"absolute": true
10+
}

0 commit comments

Comments
 (0)