baleyko / plistlint

A tool for easy linting of your .plist files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

plistlint - it's an utility for validatating of .plist files

Build Status Dependency Status NPM version Downloads The MIT License

Installation

You can install plistlint utility using npm:

$ npm install plistlint --save-dev

or yarn:

$ yarn add plistlint --dev

Usage

After installation, you can run plistlint on any file or directory like this:

$ ./node_modules/.bin/plistlint file1.plist file2.plist fileN.plist

piped to stdin

$ cat file1.plist | ./node_modules/.bin/plistlint --stdin

or even combined

$ cat file1.plist | ./node_modules/.bin/plistlint --stdin file1.plist file2.plist fileN.plist

License

MIT License - see the LICENSE for more details.

About

A tool for easy linting of your .plist files

License:MIT License


Languages

Language:JavaScript 100.0%