bootlint/README.md

41 строка
956 B
Markdown
Исходник Обычный вид История

2014-07-02 18:55:13 +04:00
bootlint
========
HTML linter for Bootstrap projects
2014-07-11 09:42:45 +04:00
## Getting Started
### On the server
Install the module with: `npm install bootlint`
```javascript
var bootlint = require('bootlint');
bootlint.awesome(); // "awesome"
```
### In the browser
Download [the code](https://raw.github.com/cvrebert/bootlint/master/dist/bootlint.js).
In your webpage:
```html
<script src="dist/bootlint.js"></script>
<script>
awesome(); // "awesome"
</script>
```
## Documentation
_(Coming soon)_
## Contributing
The project's coding style is laid out in the JSHint and JSCS configurations. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
_Also, please don't edit files in the "dist" subdirectory as they are generated via Grunt. You'll find source code in the "lib" subdirectory!_
## Release History
_(Nothing yet)_
## License
Copyright (c) 2014 Christopher Rebert. Licensed under the MIT license.