Skip to content

Commit

Permalink
fix: add config for jscpd linter (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeridth authored Apr 18, 2024
1 parent 8d98d18 commit b6893ac
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/linters/.jscpd.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"exitCode": 0,
"ignore": [
"**/.venv/**",
"**/.coverage*",
"**/.devcontainer/**",
"**/.git/**",
"**/.gitignore",
"**/.github/**",
"**/.mypy_cache/**",
"**/.pytest_cache/**",
"**/__pycache__/**",
"**/build/**",
"**/dist/**",
"**/docs/**",
"**/migrations/**",
"**/node_modules/**",
"**/report/**",
"**/test_*.py",
"**/venv/**",
"**/*.md",
"**/Dockerfile",
"**/LICENSE",
"**/Makefile"
]
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ __pycache__/
# C extensions
*.so

# JSCPD
report/

# Distribution / packaging
.Python
build/
Expand Down

0 comments on commit b6893ac

Please sign in to comment.