Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
grunt-parker-slevomat-fork
Advanced tools
Grunt plugin for parker, a stylesheet analysis tool.
This plugin requires Grunt ~0.4.5
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-parker --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-parker');
In your project's Gruntfile, add a section named parker
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
parker: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
});
Type: Array
(metric names)
Default value: false
An array of the metrics to use in parker.
By default, grunt-parker use all available metrics.
By now, grunt-parker accepts the following metrics :
TotalStylesheets
TotalStylesheetSize
TotalRules
TotalSelectors
TotalIdentifiers
TotalDeclarations
SelectorsPerRule
IdentifiersPerSelector
SpecificityPerSelector
TopSelectorSpecificity
TopSelectorSpecificitySelector
TotalIdSelectors
TotalUniqueColours
UniqueColours
TotalImportantKeywords
TotalMediaQueries
MediaQueries
Type: String
(file path)
Default value: false
A file path to log the reported results, in markdown format.
If false
is given, the file will not be written.
Note: using a file as output will silence the console output.
Type: String
Default value: Grunt Parker Report
When logging the reported results to file, use this as title of the markdown document.
Type: Boolean
Default value: false
When logging the reported results to file, use colophon and timestamp as footer of the markdown document.
Type: Boolean
Default value: false
When enabled, if you launch your grunt-packer task from a folder containing a package.json
file (like 99% of use cases), grunt-packer will use some of the package's informations to make the report file a little more informative (use project's name as title, show version and description, links to the homepage…).
In this example, the default options are used to shows the results of the parker analysis for the given files.
grunt.initConfig({
parker: {
options: {},
src: [
'test/*.css'
],
},
});
In this example, custom options are used to shows the results of the parker analysis for the given files, with only the four given metrics, and write the results on a file named report.md
grunt.initConfig({
parker: {
options: {
metrics: [
"TotalRules",
"TotalSelectors",
"TotalIdentifiers",
"TotalDeclarations"
],
file: "report.md",
colophon: true,
usePackage: true
},
src: [
'test/*.css'
]
}
});
In lieu of a formal styleguide, take care to maintain the existing coding style.
Lint and test your code using Grunt.
FAQs
Grunt plugin for parker, a stylesheet analysis tool.
The npm package grunt-parker-slevomat-fork receives a total of 1 weekly downloads. As such, grunt-parker-slevomat-fork popularity was classified as not popular.
We found that grunt-parker-slevomat-fork demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.