Skip to content

Commit 05380a6

Browse files
authored
Merge pull request CesiumGS#8744 from CesiumGS/lets-argue-over-minutiae
Add configuration for prettier code formatting
2 parents 0b48ba8 + d77b348 commit 05380a6

19 files changed

+92
-89
lines changed

.editorconfig

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,7 @@ root = true
33

44
[*]
55
indent_style = space
6-
indent_size = 4
6+
indent_size = 2
77
charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
10-
11-
[*.md]
12-
trim_trailing_whitespace = false
13-
14-
[package.json]
15-
indent_size = 2

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./Tools/eslint-config-cesium/browser.js",
2+
"extends": ["./Tools/eslint-config-cesium/browser.js", "prettier"],
33
"plugins": [
44
"html"
55
],

.prettierignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/node_modules
2+
/Build
3+
/ThirdParty
4+
/Apps/Sandcastle/ThirdParty
5+
/Source/Cesium.js
6+
/Source/Shaders/**/*.js
7+
/Source/ThirdParty/**
8+
/Source/Workers/**/*
9+
!/Source/Workers/cesiumWorkerBootstrapper.js
10+
!/Source/Workers/transferTypedArrayTest.js
11+
*.min.js

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ script:
99
- npm --silent run deploy-status -- --status pending --message 'Waiting for build'
1010

1111
- npm --silent run eslint
12+
# - npm --silent run prettier-check
1213

1314
- npm --silent run build
1415
- npm --silent run coverage -- --browsers FirefoxHeadless --webgl-stub --failTaskOnError --suppressPassed

Apps/CesiumViewer/CesiumViewer.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ function main() {
7171
var message = formatError(exception);
7272
console.error(message);
7373
if (!document.querySelector('.cesium-widget-errorPanel')) {
74-
window.alert(message); //eslint-disable-line no-alert
74+
//eslint-disable-next-line no-alert
75+
window.alert(message);
7576
}
7677
return;
7778
}

Apps/Sandcastle/CesiumSandcastle.js

+1
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,7 @@ require({
758758
}
759759

760760
var scriptCode = scriptMatch[1];
761+
scriptCode = scriptCode.replace(/^ {8}/gm, ""); //Account for Prettier spacing
761762

762763
var htmlText = '';
763764
var childIndex = 0;

Apps/Sandcastle/gallery/CZML Custom Properties.html

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
<div id="toolbar">
2121
<div id="propertiesMenu"></div>
2222
</div>
23-
</div>
2423

2524
<script id="cesium_sandcastle_script">
2625
function startup(Cesium) {

Documentation/Contributors/CodingGuide/README.md

+6-49
Original file line numberDiff line numberDiff line change
@@ -90,53 +90,9 @@ A few more naming conventions are introduced below along with their design patte
9090

9191
## Formatting
9292

93-
In general, format new code in the same way as the existing code.
94-
95-
* Use four spaces for indentation. Do not use tab characters.
96-
* Do not include trailing whitespace.
97-
* Put `{` on the same line as the previous statement:
98-
```javascript
99-
function defaultValue(a, b) {
100-
// ...
101-
}
102-
103-
if (!defined(result)) {
104-
// ...
105-
}
106-
```
107-
* Use curly braces even for single line `if`, `for`, and `while` blocks, e.g.,
108-
```javascript
109-
if (!defined(result))
110-
result = new Cartesian3();
111-
```
112-
is better written as
113-
```javascript
114-
if (!defined(result)) {
115-
result = new Cartesian3();
116-
}
117-
```
118-
* Use parenthesis judiciously, e.g.,
119-
```javascript
120-
var foo = x > 0.0 && y !== 0.0;
121-
```
122-
is better written as
123-
```javascript
124-
var foo = (x > 0.0) && (y !== 0.0);
125-
```
126-
* Use vertical whitespace to separate functions and to group related statements within a function, e.g.,
127-
```javascript
128-
function Model(options) {
129-
// ...
130-
this._allowPicking = defaultValue(options.allowPicking, true);
131-
132-
this._ready = false;
133-
this._readyPromise = when.defer();
134-
// ...
135-
};
136-
```
137-
* In JavaScript code, use single quotes, `'`, instead of double quotes, `"`. In HTML, use double quotes.
138-
139-
* Text files, including JavaScript files, end with a newline to minimize the noise in diffs.
93+
* We use [prettier](https://prettier.io/) to automatically re-format all JS code at commit time, so all of the work is done for you. Code is automatically reformatted when you commit.
94+
* For HTML code, keep the existing style. Use double quotes.
95+
* Text files, end with a newline to minimize the noise in diffs.
14096

14197
## Linting
14298

@@ -165,10 +121,11 @@ For syntax and style guidelines, we use the ESLint recommended settings (the lis
165121
- [no-new-require](http://eslint.org/docs/rules/no-new-require)
166122

167123
**[Disabling Rules with Inline Comments](http://eslint.org/docs/user-guide/configuring#disabling-rules-with-inline-comments)**
168-
* When disabling linting for one line, use `//eslint-disable-line`:
124+
* When disabling linting for one line, use `//eslint-disable-next-line`:
169125
```js
170126
function exit(warningMessage) {
171-
window.alert('Cannot exit: ' + warningMessage); //eslint-disable-line no-alert
127+
//eslint-disable-next-line no-alert
128+
window.alert('Cannot exit: ' + warningMessage);
172129
}
173130
```
174131

Source/Core/Resource.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -1898,9 +1898,12 @@ import TrustedServers from './TrustedServers.js';
18981898

18991899
function loadWithHttpRequest(url, responseType, method, data, headers, deferred, overrideMimeType) {
19001900
// Note: only the 'json' and 'text' responseTypes transforms the loaded buffer
1901-
var URL = require('url').parse(url); // eslint-disable-line
1902-
var http = URL.protocol === 'https:' ? require('https') : require('http'); // eslint-disable-line
1903-
var zlib = require('zlib'); // eslint-disable-line
1901+
/* eslint-disable no-undef */
1902+
var URL = require('url').parse(url);
1903+
var http = URL.protocol === 'https:' ? require('https') : require('http');
1904+
var zlib = require('zlib');
1905+
/* eslint-enable no-undef */
1906+
19041907
var options = {
19051908
protocol : URL.protocol,
19061909
hostname : URL.hostname,
@@ -1924,7 +1927,8 @@ import TrustedServers from './TrustedServers.js';
19241927
});
19251928

19261929
res.on('end', function() {
1927-
var result = Buffer.concat(chunkArray); // eslint-disable-line
1930+
// eslint-disable-next-line no-undef
1931+
var result = Buffer.concat(chunkArray);
19281932
if (res.headers['content-encoding'] === 'gzip') {
19291933
zlib.gunzip(result, function(error, resultUnzipped) {
19301934
if (error) {

Source/Core/buildModuleUrl.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ import Resource from './Resource.js';
3131
a.href = url;
3232

3333
// IE only absolutizes href on get, not set
34-
a.href = a.href; // eslint-disable-line no-self-assign
34+
// eslint-disable-next-line no-self-assign
35+
a.href = a.href;
3536
return a.href;
3637
}
3738

Source/Core/isCrossOriginUrl.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ import defined from './defined.js';
2222

2323
a.href = url;
2424
// IE only absolutizes href on get, not set
25-
a.href = a.href; // eslint-disable-line no-self-assign
25+
// eslint-disable-next-line no-self-assign
26+
a.href = a.href;
2627

2728
return protocol !== a.protocol || host !== a.host;
2829
}

Source/Scene/Cesium3DTileContent.js

+24-12
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ import DeveloperError from '../Core/DeveloperError.js';
3939
* @readonly
4040
*/
4141
featuresLength : {
42-
get : function() { // eslint-disable-line getter-return
42+
// eslint-disable-next-line getter-return
43+
get : function() {
4344
DeveloperError.throwInstantiationError();
4445
}
4546
},
@@ -59,7 +60,8 @@ import DeveloperError from '../Core/DeveloperError.js';
5960
* @readonly
6061
*/
6162
pointsLength : {
62-
get : function() { // eslint-disable-line getter-return
63+
// eslint-disable-next-line getter-return
64+
get : function() {
6365
DeveloperError.throwInstantiationError();
6466
}
6567
},
@@ -73,7 +75,8 @@ import DeveloperError from '../Core/DeveloperError.js';
7375
* @readonly
7476
*/
7577
trianglesLength : {
76-
get : function() { // eslint-disable-line getter-return
78+
// eslint-disable-next-line getter-return
79+
get : function() {
7780
DeveloperError.throwInstantiationError();
7881
}
7982
},
@@ -87,7 +90,8 @@ import DeveloperError from '../Core/DeveloperError.js';
8790
* @readonly
8891
*/
8992
geometryByteLength : {
90-
get : function() { // eslint-disable-line getter-return
93+
// eslint-disable-next-line getter-return
94+
get : function() {
9195
DeveloperError.throwInstantiationError();
9296
}
9397
},
@@ -101,7 +105,8 @@ import DeveloperError from '../Core/DeveloperError.js';
101105
* @readonly
102106
*/
103107
texturesByteLength : {
104-
get : function() { // eslint-disable-line getter-return
108+
// eslint-disable-next-line getter-return
109+
get : function() {
105110
DeveloperError.throwInstantiationError();
106111
}
107112
},
@@ -115,7 +120,8 @@ import DeveloperError from '../Core/DeveloperError.js';
115120
* @readonly
116121
*/
117122
batchTableByteLength : {
118-
get : function() { // eslint-disable-line getter-return
123+
// eslint-disable-next-line getter-return
124+
get : function() {
119125
DeveloperError.throwInstantiationError();
120126
}
121127
},
@@ -132,7 +138,8 @@ import DeveloperError from '../Core/DeveloperError.js';
132138
* @readonly
133139
*/
134140
innerContents : {
135-
get : function() { // eslint-disable-line getter-return
141+
// eslint-disable-next-line getter-return
142+
get : function() {
136143
DeveloperError.throwInstantiationError();
137144
}
138145
},
@@ -146,7 +153,8 @@ import DeveloperError from '../Core/DeveloperError.js';
146153
* @readonly
147154
*/
148155
readyPromise : {
149-
get : function() { // eslint-disable-line getter-return
156+
// eslint-disable-next-line getter-return
157+
get : function() {
150158
DeveloperError.throwInstantiationError();
151159
}
152160
},
@@ -160,7 +168,8 @@ import DeveloperError from '../Core/DeveloperError.js';
160168
* @readonly
161169
*/
162170
tileset : {
163-
get : function() { // eslint-disable-line getter-return
171+
// eslint-disable-next-line getter-return
172+
get : function() {
164173
DeveloperError.throwInstantiationError();
165174
}
166175
},
@@ -174,7 +183,8 @@ import DeveloperError from '../Core/DeveloperError.js';
174183
* @readonly
175184
*/
176185
tile : {
177-
get : function() { // eslint-disable-line getter-return
186+
// eslint-disable-next-line getter-return
187+
get : function() {
178188
DeveloperError.throwInstantiationError();
179189
}
180190
},
@@ -187,7 +197,8 @@ import DeveloperError from '../Core/DeveloperError.js';
187197
* @readonly
188198
*/
189199
url : {
190-
get : function() { // eslint-disable-line getter-return
200+
// eslint-disable-next-line getter-return
201+
get : function() {
191202
DeveloperError.throwInstantiationError();
192203
}
193204
},
@@ -205,7 +216,8 @@ import DeveloperError from '../Core/DeveloperError.js';
205216
* @private
206217
*/
207218
batchTable : {
208-
get : function() { // eslint-disable-line getter-return
219+
// eslint-disable-next-line getter-return
220+
get : function() {
209221
DeveloperError.throwInstantiationError();
210222
}
211223
}

Source/Scene/Polyline.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ import Material from './Material.js';
7373

7474
this._actualLength = undefined;
7575

76-
this._propertiesChanged = new Uint32Array(NUMBER_OF_PROPERTIES); //eslint-disable-line no-use-before-define
76+
// eslint-disable-next-line no-use-before-define
77+
this._propertiesChanged = new Uint32Array(NUMBER_OF_PROPERTIES);
7778
this._polylineCollection = polylineCollection;
7879
this._dirty = false;
7980
this._pickId = undefined;

Source/Widgets/Cesium3DTilesInspector/Cesium3DTilesInspectorViewModel.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ import knockout from '../../ThirdParty/knockout.js';
3434
viewModel._eventHandler.removeInputAction(ScreenSpaceEventType.MOUSE_MOVE);
3535

3636
// Restore hover-over selection to its current value
37-
viewModel.picking = viewModel.picking; // eslint-disable-line no-self-assign
37+
// eslint-disable-next-line no-self-assign
38+
viewModel.picking = viewModel.picking;
3839
}
3940
}
4041

@@ -321,6 +322,7 @@ import knockout from '../../ThirdParty/knockout.js';
321322
*/
322323
this.colorBlendMode = Cesium3DTileColorBlendMode.HIGHLIGHT;
323324

325+
var showOnlyPickedTileDebugLabel = knockout.observable();
324326
var picking = knockout.observable();
325327
knockout.defineProperty(this, 'picking', {
326328
get : function() {
@@ -347,7 +349,7 @@ import knockout from '../../ThirdParty/knockout.js';
347349
if (!defined(that._tileset)) {
348350
return;
349351
}
350-
if (showOnlyPickedTileDebugLabel && defined(picked) && defined(picked.content)) { //eslint-disable-line no-use-before-define
352+
if (showOnlyPickedTileDebugLabel && defined(picked) && defined(picked.content)) {
351353
var position;
352354
if (scene.pickPositionSupported) {
353355
position = scene.pickPosition(e.endPosition);
@@ -503,7 +505,6 @@ import knockout from '../../ThirdParty/knockout.js';
503505
*/
504506
this.freezeFrame = false;
505507

506-
var showOnlyPickedTileDebugLabel = knockout.observable();
507508
knockout.defineProperty(this, 'showOnlyPickedTileDebugLabel', {
508509
get : function() {
509510
return showOnlyPickedTileDebugLabel();
@@ -1126,7 +1127,8 @@ import knockout from '../../ThirdParty/knockout.js';
11261127
var length = settings.length;
11271128
for (var i = 0; i < length; ++i) {
11281129
var setting = settings[i];
1129-
this[setting] = this[setting]; // eslint-disable-line no-self-assign
1130+
//eslint-disable-next-line no-self-assign
1131+
this[setting] = this[setting];
11301132
}
11311133

11321134
// update view model with existing tileset settings

Source/Workers/transferTypedArrayTest.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// make sure self is defined so that the Dojo build can evaluate this file without crashing.
22
if (typeof self === 'undefined') {
3-
self = {}; //eslint-disable-line no-implicit-globals, no-global-assign
3+
//eslint-disable-next-line no-implicit-globals, no-global-assign
4+
self = {};
45
}
56

67
self.onmessage = function(event) {

Specs/Scene/ModelSpec.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2494,7 +2494,8 @@ describe('Scene/Model', function() {
24942494
}
24952495
Matrix4.multiplyByMatrix3(m.modelMatrix, rotate, m.modelMatrix);
24962496

2497-
expect(scene).toRenderAndCall(function(rgba) { //eslint-disable-line no-loop-func
2497+
//eslint-disable-next-line no-loop-func
2498+
expect(scene).toRenderAndCall(function(rgba) {
24982499
expect(rgba).not.toEqual([0, 0, 0, 255]);
24992500
expect(rgba).not.toEqual(oldPixelColor);
25002501
oldPixelColor = rgba;

Specs/Scene/PointCloud3DTileContentSpec.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,8 @@ describe('Scene/PointCloud3DTileContent', function() {
448448
/* jshint loopfunc: true */
449449
while (defined(picked)) {
450450
picked.show = false;
451-
expect(scene).toPickAndCall(function(result) { //eslint-disable-line no-loop-func
451+
//eslint-disable-next-line no-loop-func
452+
expect(scene).toPickAndCall(function(result) {
452453
picked = result;
453454
});
454455
++pickedCountCulling;
@@ -471,7 +472,8 @@ describe('Scene/PointCloud3DTileContent', function() {
471472
/* jshint loopfunc: true */
472473
while (defined(picked)) {
473474
picked.show = false;
474-
expect(scene).toPickAndCall(function(result) { //eslint-disable-line no-loop-func
475+
//eslint-disable-next-line no-loop-func
476+
expect(scene).toPickAndCall(function(result) {
475477
picked = result;
476478
});
477479
++pickedCount;

0 commit comments

Comments
 (0)