Skip to content

Commit db59b63

Browse files
authored
Adds eslint on src and src/__tests__ (#638)
* Adds linting to tests * Adds linting to sources * Adds linting * Adds linting for integration spec * Updates docs with options removed where necessary
1 parent ca9000e commit db59b63

File tree

98 files changed

+10508
-9427
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+10508
-9427
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.eslintrc.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"root": true,
3+
"extends": "eslint:recommended",
4+
"env": {
5+
"node": true,
6+
"es6": true
7+
},
8+
"parser": "babel-eslint",
9+
"plugins": [
10+
"flowtype"
11+
],
12+
"parserOptions": {
13+
"ecmaVersion": 6,
14+
"sourceType": "module"
15+
},
16+
"rules": {
17+
"indent": ["error", 2],
18+
"linebreak-style": ["error", "unix"],
19+
"no-trailing-spaces": 2,
20+
"eol-last": 2,
21+
"space-in-parens": ["error", "never"],
22+
"no-multiple-empty-lines": 1,
23+
"prefer-const": "error",
24+
"space-infix-ops": "error",
25+
"no-useless-escape": "off"
26+
}
27+
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ integration/test_logs
1212
test_logs
1313
out/
1414
docs/
15+
.eslintcache
16+

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- npm install -g mongodb-runner
2424
- mongodb-runner start
2525
script:
26+
- npm run lint
2627
- npm test -- --maxWorkers=4
2728
- npm run integration
2829
after_script: ./node_modules/codecov/bin/codecov -f ./coverage/coverage-final.json && rm -rf ./coverage

2.0.0.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ With native promises, `.done` and `.fail` don't exist and are replaces by `.then
1414
// before
1515
const query = new Parse.Query();
1616
query.find()
17-
.done((results) => {
17+
.done((results) => {
1818

1919
})
20-
.fail((error) => {
20+
.fail((error) => {
2121

2222
});
2323

2424
// after
2525
query.find()
26-
.then((results) => {
26+
.then((results) => {
2727

2828
})
29-
.catch((error) => {
29+
.catch((error) => {
3030

3131
});
3232
```
@@ -37,13 +37,13 @@ query.find()
3737
// before
3838
const query = new Parse.Query();
3939
query.find()
40-
.always((result) => {
40+
.always((result) => {
4141

4242
});
4343

4444
// after
4545
query.find()
46-
.finally((result) => {
46+
.finally((result) => {
4747

4848
});
4949
```
@@ -55,15 +55,15 @@ With native promises, the constructor is different, you will need to update to t
5555
```js
5656
// before
5757
const promise = new Promise();
58-
doSomethingAsync((error, success) => {
58+
doSomethingAsync((error, success) => {
5959
if (error) { promise.reject(error); }
6060
else { promise.resolve(success); }
6161
});
6262
return promise;
6363

6464
// after
65-
return new Promise((resolve, reject) => {
66-
doSomethingAsync((error, success) => {
65+
return new Promise((resolve, reject) => {
66+
doSomethingAsync((error, success) => {
6767
if (error) { reject(error); }
6868
else { resolve(success); }
6969
});

integration/cloud/main.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* global Parse */
12
Parse.Cloud.define("bar", function(request, response) {
23
if (request.params.key2 === "value1") {
34
response.success('Foo');
@@ -22,4 +23,4 @@ Parse.Cloud.job('CloudJob2', function(request, response) {
2223

2324
Parse.Cloud.job('CloudJobFailing', function(request, response) {
2425
response.error('cloud job failed');
25-
});
26+
});

integration/test/.eslintrc.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"env": {
3+
"jasmine": true
4+
},
5+
"globals": {},
6+
"rules": {
7+
"no-console": [0],
8+
"no-var": "error"
9+
}
10+
}

0 commit comments

Comments
 (0)