Package Exports
- jscpd
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jscpd) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Copy/paste detector for programming source code.
jscpd is a tool for detect copy/past "design pattern" in programming source code.
| Supported languages |
|---|
| JavaScript |
| CoffeeScript |
| PHP |
| Python |
| Less |
| Ruby |
Status
Installation
npm install jscpd -gUsage
jscpd --path my_project/ --languages js,coffee #scan for js and coffee files for duplicates
jscpd -f **/*.js -e **/node_modules/**
jscpd --files **/*.js --exclude **/*.min.js --output report.xmlor
If you have file .cpd.yaml in your directory
#.cpd.yaml
path:
- fixtures/
languages:
- javascript
- coffeescript
- php
- python
- less
- ruby
exclude:
- "**/*.min.js"
- "**/*.mm.js"and run jscpd command, you will check code for duplicates according config from .cpd.yaml
or
# coffeescript
jscpd = require('jspd')
result = jscpd::run
path: 'my/project/folder'
files: '**/*.js'
exclude: ['**/*.min.js', '**/node_modules/**']Please see the minimatch documentation for more details.
Deprecated style:
jscpd --ignore node_modules/ --coffeeOptions:
| Option | Type | Default | Description |
|---|
- -l, --min-lines | [NUMBER] | 5 | min size of duplication in code lines
- -t, --min-tokens | [NUMBER] | 70 | mim size of duplication in code tokens
- -f, --files | [STRING] | * | glob pattern for find code
- -e, --exclude | [STRING] | - | directory to ignore
- -g, --languages | [STRING] | All supported | list of languages which scan for duplicates, separated with coma
- -o, --output | [PATH] | - | path to report xml file
--verbose | | - | show full info about copies- -p, --path | [PATH] | Current dir | path to code
- -v, --version | | - | Display the current version
- -h, --help | | - | Display help and usage details | | |
- -i, --ignore | [PATH] | - | directory to ignore (deprecated, use -e instant of this)
- -c, --coffee | [BOOLEAN] | - | is CoffeeScript code (deprecated, use --languages)




