♥️ lint done

This commit is contained in:
ZYSzys 2018-11-25 15:20:52 +08:00
parent 12ccd5290d
commit c93e7fec31
7 changed files with 59 additions and 11 deletions

9
.editorconfig Normal file
View File

@ -0,0 +1,9 @@
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

4
.gitignore vendored
View File

@ -1 +1,3 @@
*/.DS_Store */.DS_Store
node_modules
package-lock.json

View File

@ -1,6 +1,12 @@
language: ruby matrix:
rvm: 2.4.1 include:
before_script: gem install awesome_bot - language: ruby
script: awesome_bot README.md --allow-redirect --allow-dupe rvm: 2.4.1
before_script: gem install awesome_bot
script: awesome_bot README.md --allow-redirect --allow-dupe
- language: node_js
node_js: 10
notifications: notifications:
email: false email: false

View File

@ -4,7 +4,6 @@
[CAPTCHA](https://en.wikipedia.org/wiki/CAPTCHA) is a type of challengeresponse test used in computing to determine whether or not the user is human. [CAPTCHA](https://en.wikipedia.org/wiki/CAPTCHA) is a type of challengeresponse test used in computing to determine whether or not the user is human.
**Pull requests are welcome**
[English](README.md) | [中文](README-zh.md) [English](README.md) | [中文](README-zh.md)
@ -13,10 +12,11 @@
- [Libraries](#libraries) - [Libraries](#libraries)
- [Generation](#generation) - [Generation](#generation)
- [Crack](#crack) - [Crack](#crack)
- [General](#general) - [General](#general)
- [Chinese](#chinese) - [Chinese](#chinese)
- [Tools](#tools) - [Tools](#tools)
- [Other](#other) - [Other](#other)
- [Maintainers](#maintainers)
## Libraries ## Libraries

View File

@ -4,7 +4,6 @@
[CAPTCHA](https://en.wikipedia.org/wiki/CAPTCHA) is a type of challengeresponse test used in computing to determine whether or not the user is human. [CAPTCHA](https://en.wikipedia.org/wiki/CAPTCHA) is a type of challengeresponse test used in computing to determine whether or not the user is human.
**Pull requests are welcome**
[English](README.md) | [中文](README-zh.md) [English](README.md) | [中文](README-zh.md)
@ -13,10 +12,11 @@
- [Libraries](#libraries) - [Libraries](#libraries)
- [Generation](#generation) - [Generation](#generation)
- [Crack](#crack) - [Crack](#crack)
- [General](#general) - [General](#general)
- [Chinese](#chinese) - [Chinese](#chinese)
- [Tools](#tools) - [Tools](#tools)
- [Other](#other) - [Other](#other)
- [Maintainers](#maintainers)
## Libraries ## Libraries

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "awesome-captcha",
"version": "0.0.1",
"description": "Curated list of awesome captcha libraries and captcha crack tools.",
"main": "index.js",
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZYSzys/awesome-captcha.git"
},
"keywords": [
"awesome",
"captcha"
],
"author": "ZYSzys <17367077526@163.com> (http://zyszys.top/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZYSzys/awesome-captcha/issues"
},
"homepage": "https://github.com/ZYSzys/awesome-captcha#readme",
"devDependencies": {
"awesome-lint": "0.8.0"
}
}

5
test.js Normal file
View File

@ -0,0 +1,5 @@
'use strict';
const awesomeLint = require('awesome-lint');
awesomeLint.report({ filename: 'README.md'});