Skip to content

Commit af43b95

Browse files
committed
Introduce prettier par latest addon blueprint
1 parent 5bcb251 commit af43b95

Some content is hidden

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

54 files changed

+1182
-669
lines changed

.eslintrc.js

+15-8
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ module.exports = {
1818
extends: [
1919
'eslint:recommended',
2020
'plugin:ember/recommended',
21+
'plugin:prettier/recommended',
2122
],
2223
env: {
2324
browser: true,
2425
},
2526
rules: {
2627
'ember/new-module-imports': 'off',
2728
'ember/no-get': 'off',
28-
'ember/no-private-routing-service': 'off'
29+
'ember/no-private-routing-service': 'off',
2930
},
3031
overrides: [
3132
// node files
@@ -54,13 +55,19 @@ module.exports = {
5455
extends: ['plugin:node/recommended'],
5556
rules: {
5657
'ember/avoid-leaking-state-in-ember-objects': 'off',
57-
'node/no-extraneous-require': ['error', {
58-
allowModules: ['ember-source-channel-url']
59-
}],
60-
'node/no-unpublished-require': ['error', {
61-
allowModules: ['ember-cli']
62-
}]
63-
}
58+
'node/no-extraneous-require': [
59+
'error',
60+
{
61+
allowModules: ['ember-source-channel-url'],
62+
},
63+
],
64+
'node/no-unpublished-require': [
65+
'error',
66+
{
67+
allowModules: ['ember-cli'],
68+
},
69+
],
70+
},
6471
},
6572
],
6673
};

.npmignore

+41-18
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,41 @@
1-
/bower_components
2-
/config
3-
/dist
4-
/.git
5-
/tests
6-
/node-tests
7-
/tmp
8-
**/.gitkeep
9-
.bowerrc
10-
.editorconfig
11-
.ember-cli
12-
.gitignore
13-
.eslintrc.js
14-
.watchmanconfig
15-
.travis.yml
16-
bower.json
17-
ember-cli-build.js
18-
testem.js
1+
# compiled output
2+
/dist/
3+
/tmp/
4+
5+
# dependencies
6+
/bower_components/
7+
8+
# misc
9+
/.bowerrc
10+
/.editorconfig
11+
/.ember-cli
12+
/.env*
13+
/.eslintcache
14+
/.eslintignore
15+
/.eslintrc.js
16+
/.git/
17+
/.github/
18+
/.gitignore
19+
/.prettierignore
20+
/.prettierrc.js
21+
/.template-lintrc.js
22+
/.travis.yml
23+
/.watchmanconfig
24+
/bower.json
25+
/config/ember-try.js
26+
/CONTRIBUTING.md
27+
/ember-cli-build.js
28+
/node-tests/
29+
/testem.js
30+
/tests/
31+
/yarn-error.log
32+
/yarn.lock
33+
.gitkeep
34+
35+
# ember-try
36+
/.node_modules.ember-try/
37+
/bower.json.ember-try
38+
/npm-shrinkwrap.json.ember-try
39+
/package.json.ember-try
40+
/package-lock.json.ember-try
41+
/yarn.lock.ember-try

.prettierignore

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# unconventional js
2+
/blueprints/*/files/
3+
/vendor/
4+
5+
# compiled output
6+
/dist/
7+
/tmp/
8+
9+
# dependencies
10+
/bower_components/
11+
/node_modules/
12+
13+
# misc
14+
/coverage/
15+
!.*
16+
.eslintcache
17+
.lint-todo/
18+
19+
# ember-try
20+
/.node_modules.ember-try/
21+
/bower.json.ember-try
22+
/npm-shrinkwrap.json.ember-try
23+
/package.json.ember-try
24+
/package-lock.json.ember-try
25+
/yarn.lock.ember-try

.prettierrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
module.exports = {
4+
singleQuote: true,
5+
};

addon-test-support/loaded-asset-state.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export function getLoadedAssetState() {
8484
return {
8585
requireEntries: Object.keys(self.requirejs.entries),
8686
scripts: getAll('script'),
87-
links: getAll('link')
87+
links: getAll('link'),
8888
};
8989
}
9090

@@ -98,7 +98,7 @@ export function cacheLoadedAssetState() {
9898
({
9999
requireEntries: cachedRequireEntries,
100100
scripts: cachedScriptTags,
101-
links: cachedLinkTags
101+
links: cachedLinkTags,
102102
} = getLoadedAssetState());
103103
}
104104

@@ -112,10 +112,14 @@ export function resetLoadedAssetState() {
112112
const {
113113
requireEntries: currentRequireEntries,
114114
scripts: currentScriptTags,
115-
links: currentLinkTags
115+
links: currentLinkTags,
116116
} = getLoadedAssetState();
117117

118-
compareAndIterate(cachedRequireEntries, currentRequireEntries, resetRequireEntry);
118+
compareAndIterate(
119+
cachedRequireEntries,
120+
currentRequireEntries,
121+
resetRequireEntry
122+
);
119123
compareAndIterate(cachedScriptTags, currentScriptTags, removeNode);
120124
compareAndIterate(cachedLinkTags, currentLinkTags, removeNode);
121125
}

addon-test-support/preload-assets.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ export default function preloadAssets(manifest) {
1616
const loader = AssetLoader.create();
1717
loader.pushManifest(manifest);
1818

19-
const bundlePromises = Object.keys(manifest.bundles).map((bundle) => loader.loadBundle(bundle));
19+
const bundlePromises = Object.keys(manifest.bundles).map((bundle) =>
20+
loader.loadBundle(bundle)
21+
);
2022
const allBundles = RSVP.all(bundlePromises);
2123

2224
return Test.resolve(allBundles);

addon/errors/asset-load.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ export default class AssetLoadError extends LoadError {
1717
* @param {Error} error
1818
*/
1919
constructor(assetLoader, asset, error) {
20-
super(`The ${asset.type} asset with uri "${asset.uri}" failed to load with the error: ${error}.`, assetLoader);
20+
super(
21+
`The ${asset.type} asset with uri "${asset.uri}" failed to load with the error: ${error}.`,
22+
assetLoader
23+
);
2124
this.name = 'AssetLoadError';
2225
this.asset = asset;
2326
this.originalError = error;

addon/errors/bundle-load.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ export default class BundleLoadError extends LoadError {
2525
}
2626

2727
retryLoad() {
28-
return this._invokeAndCache('loadBundle', this.bundleName, RETRY_LOAD_SECRET);
28+
return this._invokeAndCache(
29+
'loadBundle',
30+
this.bundleName,
31+
RETRY_LOAD_SECRET
32+
);
2933
}
3034
}

addon/errors/load.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if (new Error().stack) {
1515
} else {
1616
captureErrorForStack = () => {
1717
try { __undef__(); } catch (e) { return e; } // eslint-disable-line
18-
}
18+
};
1919
}
2020

2121
/**
@@ -31,22 +31,22 @@ export default function LoadError(message, assetLoader) {
3131
this.loader = assetLoader;
3232
this.stack = captureErrorForStack().stack;
3333
}
34-
LoadError.prototype = new Error;
34+
LoadError.prototype = new Error();
3535

3636
/**
3737
* An abstract hook to define in a sub-class that specifies how to retry
3838
* loading the errored resource.
3939
*/
40-
LoadError.prototype.retryLoad = function() {
40+
LoadError.prototype.retryLoad = function () {
4141
throw new Error(`You must define a behavior for 'retryLoad' in a subclass.`);
42-
}
42+
};
4343

4444
/**
4545
* Invokes a specified method on the AssetLoader service and caches the
4646
* result. Should be used in implementations of the retryLoad hook.
4747
*
4848
* @protected
4949
*/
50-
LoadError.prototype._invokeAndCache = function(method, ...args) {
50+
LoadError.prototype._invokeAndCache = function (method, ...args) {
5151
return this._retry || (this._retry = this.loader[method](...args));
52-
}
52+
};

addon/loaders/css.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default nodeLoader(function css(uri) {
2020
}
2121

2222
// Try using the default onload/onerror handlers...
23-
const link = createLoadElement('link', resolve, function(error) {
23+
const link = createLoadElement('link', resolve, function (error) {
2424
if (this.parentNode) {
2525
this.parentNode.removeChild(this);
2626
}

addon/loaders/js.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default nodeLoader(function js(uri) {
1515
return resolve();
1616
}
1717

18-
const script = createLoadElement('script', resolve, function(error) {
18+
const script = createLoadElement('script', resolve, function (error) {
1919
if (this.parentNode) {
2020
this.parentNode.removeChild(this);
2121
}

addon/loaders/utilities.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import RSVP from 'rsvp';
22

3-
const isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined';
3+
const isBrowser =
4+
typeof window !== 'undefined' && typeof document !== 'undefined';
45

56
/**
67
* Creates a DOM element with the specified onload and onerror handlers.

0 commit comments

Comments
 (0)