Skip to content

Commit c93e7fe

Browse files
committed
♥️ lint done
1 parent 12ccd52 commit c93e7fe

7 files changed

+59
-11
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
*/.DS_Store
1+
*/.DS_Store
2+
node_modules
3+
package-lock.json

.travis.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
language: ruby
2-
rvm: 2.4.1
3-
before_script: gem install awesome_bot
4-
script: awesome_bot README.md --allow-redirect --allow-dupe
1+
matrix:
2+
include:
3+
- language: ruby
4+
rvm: 2.4.1
5+
before_script: gem install awesome_bot
6+
script: awesome_bot README.md --allow-redirect --allow-dupe
7+
8+
- language: node_js
9+
node_js: 10
10+
511
notifications:
612
email: false

README-zh.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
55
[CAPTCHA](https://en.wikipedia.org/wiki/CAPTCHA) is a type of challenge–response test used in computing to determine whether or not the user is human.
66

7-
**Pull requests are welcome**
87

98
[English](README.md) | [中文](README-zh.md)
109

@@ -13,10 +12,11 @@
1312
- [Libraries](#libraries)
1413
- [Generation](#generation)
1514
- [Crack](#crack)
16-
- [General](#general)
17-
- [Chinese](#chinese)
15+
- [General](#general)
16+
- [Chinese](#chinese)
1817
- [Tools](#tools)
1918
- [Other](#other)
19+
- [Maintainers](#maintainers)
2020

2121

2222
## Libraries

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
55
[CAPTCHA](https://en.wikipedia.org/wiki/CAPTCHA) is a type of challenge–response test used in computing to determine whether or not the user is human.
66

7-
**Pull requests are welcome**
87

98
[English](README.md) | [中文](README-zh.md)
109

@@ -13,10 +12,11 @@
1312
- [Libraries](#libraries)
1413
- [Generation](#generation)
1514
- [Crack](#crack)
16-
- [General](#general)
17-
- [Chinese](#chinese)
15+
- [General](#general)
16+
- [Chinese](#chinese)
1817
- [Tools](#tools)
1918
- [Other](#other)
19+
- [Maintainers](#maintainers)
2020

2121

2222
## Libraries

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "awesome-captcha",
3+
"version": "0.0.1",
4+
"description": "Curated list of awesome captcha libraries and captcha crack tools.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "node test.js"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/ZYSzys/awesome-captcha.git"
12+
},
13+
"keywords": [
14+
"awesome",
15+
"captcha"
16+
],
17+
"author": "ZYSzys <[email protected]> (http://zyszys.top/)",
18+
"license": "MIT",
19+
"bugs": {
20+
"url": "https://github.com/ZYSzys/awesome-captcha/issues"
21+
},
22+
"homepage": "https://github.com/ZYSzys/awesome-captcha#readme",
23+
"devDependencies": {
24+
"awesome-lint": "0.8.0"
25+
}
26+
}

test.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
const awesomeLint = require('awesome-lint');
4+
5+
awesomeLint.report({ filename: 'README.md'});

0 commit comments

Comments
 (0)