mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 17:30:09 +02:00
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes). Prettier is being used for a couple of reasons: - To be consistent with `mozilla-central`, where Prettier is already in use across the tree. - To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters. Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some). Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long. *Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit. (On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
This commit is contained in:
parent
8ec1dfde49
commit
de36b2aaba
205 changed files with 40024 additions and 31859 deletions
|
@ -14,101 +14,104 @@
|
|||
*/
|
||||
|
||||
import {
|
||||
getDingbatsGlyphsUnicode, getGlyphsUnicode
|
||||
} from '../../src/core/glyphlist';
|
||||
getDingbatsGlyphsUnicode,
|
||||
getGlyphsUnicode,
|
||||
} from "../../src/core/glyphlist";
|
||||
import {
|
||||
getNormalizedUnicodes, getUnicodeForGlyph, getUnicodeRangeFor,
|
||||
mapSpecialUnicodeValues, reverseIfRtl
|
||||
} from '../../src/core/unicode';
|
||||
getNormalizedUnicodes,
|
||||
getUnicodeForGlyph,
|
||||
getUnicodeRangeFor,
|
||||
mapSpecialUnicodeValues,
|
||||
reverseIfRtl,
|
||||
} from "../../src/core/unicode";
|
||||
|
||||
describe('unicode', function () {
|
||||
describe('mapSpecialUnicodeValues', function () {
|
||||
it('should not re-map normal Unicode values', function () {
|
||||
describe("unicode", function() {
|
||||
describe("mapSpecialUnicodeValues", function() {
|
||||
it("should not re-map normal Unicode values", function() {
|
||||
// A
|
||||
expect(mapSpecialUnicodeValues(0x0041)).toEqual(0x0041);
|
||||
// fi
|
||||
expect(mapSpecialUnicodeValues(0xFB01)).toEqual(0xFB01);
|
||||
expect(mapSpecialUnicodeValues(0xfb01)).toEqual(0xfb01);
|
||||
});
|
||||
|
||||
it('should re-map special Unicode values', function () {
|
||||
it("should re-map special Unicode values", function() {
|
||||
// copyrightsans => copyright
|
||||
expect(mapSpecialUnicodeValues(0xF8E9)).toEqual(0x00A9);
|
||||
expect(mapSpecialUnicodeValues(0xf8e9)).toEqual(0x00a9);
|
||||
// Private Use Area characters
|
||||
expect(mapSpecialUnicodeValues(0xFFFF)).toEqual(0);
|
||||
expect(mapSpecialUnicodeValues(0xffff)).toEqual(0);
|
||||
});
|
||||
});
|
||||
|
||||
describe('getUnicodeForGlyph', function () {
|
||||
describe("getUnicodeForGlyph", function() {
|
||||
var standardMap, dingbatsMap;
|
||||
|
||||
beforeAll(function (done) {
|
||||
beforeAll(function(done) {
|
||||
standardMap = getGlyphsUnicode();
|
||||
dingbatsMap = getDingbatsGlyphsUnicode();
|
||||
done();
|
||||
});
|
||||
|
||||
afterAll(function () {
|
||||
afterAll(function() {
|
||||
standardMap = dingbatsMap = null;
|
||||
});
|
||||
|
||||
it('should get Unicode values for valid glyph names', function () {
|
||||
expect(getUnicodeForGlyph('A', standardMap)).toEqual(0x0041);
|
||||
expect(getUnicodeForGlyph('a1', dingbatsMap)).toEqual(0x2701);
|
||||
it("should get Unicode values for valid glyph names", function() {
|
||||
expect(getUnicodeForGlyph("A", standardMap)).toEqual(0x0041);
|
||||
expect(getUnicodeForGlyph("a1", dingbatsMap)).toEqual(0x2701);
|
||||
});
|
||||
|
||||
it('should recover Unicode values from uniXXXX/uXXXX{XX} glyph names',
|
||||
function () {
|
||||
expect(getUnicodeForGlyph('uni0041', standardMap)).toEqual(0x0041);
|
||||
expect(getUnicodeForGlyph('u0041', standardMap)).toEqual(0x0041);
|
||||
it("should recover Unicode values from uniXXXX/uXXXX{XX} glyph names", function() {
|
||||
expect(getUnicodeForGlyph("uni0041", standardMap)).toEqual(0x0041);
|
||||
expect(getUnicodeForGlyph("u0041", standardMap)).toEqual(0x0041);
|
||||
|
||||
expect(getUnicodeForGlyph('uni2701', dingbatsMap)).toEqual(0x2701);
|
||||
expect(getUnicodeForGlyph('u2701', dingbatsMap)).toEqual(0x2701);
|
||||
expect(getUnicodeForGlyph("uni2701", dingbatsMap)).toEqual(0x2701);
|
||||
expect(getUnicodeForGlyph("u2701", dingbatsMap)).toEqual(0x2701);
|
||||
});
|
||||
|
||||
it('should not get Unicode values for invalid glyph names', function () {
|
||||
expect(getUnicodeForGlyph('Qwerty', standardMap)).toEqual(-1);
|
||||
expect(getUnicodeForGlyph('Qwerty', dingbatsMap)).toEqual(-1);
|
||||
it("should not get Unicode values for invalid glyph names", function() {
|
||||
expect(getUnicodeForGlyph("Qwerty", standardMap)).toEqual(-1);
|
||||
expect(getUnicodeForGlyph("Qwerty", dingbatsMap)).toEqual(-1);
|
||||
});
|
||||
});
|
||||
|
||||
describe('getUnicodeRangeFor', function () {
|
||||
it('should get correct Unicode range', function () {
|
||||
describe("getUnicodeRangeFor", function() {
|
||||
it("should get correct Unicode range", function() {
|
||||
// A (Basic Latin)
|
||||
expect(getUnicodeRangeFor(0x0041)).toEqual(0);
|
||||
// fi (Alphabetic Presentation Forms)
|
||||
expect(getUnicodeRangeFor(0xFB01)).toEqual(62);
|
||||
expect(getUnicodeRangeFor(0xfb01)).toEqual(62);
|
||||
});
|
||||
|
||||
it('should not get a Unicode range', function () {
|
||||
expect(getUnicodeRangeFor(0x05FF)).toEqual(-1);
|
||||
it("should not get a Unicode range", function() {
|
||||
expect(getUnicodeRangeFor(0x05ff)).toEqual(-1);
|
||||
});
|
||||
});
|
||||
|
||||
describe('getNormalizedUnicodes', function () {
|
||||
describe("getNormalizedUnicodes", function() {
|
||||
var NormalizedUnicodes;
|
||||
|
||||
beforeAll(function (done) {
|
||||
beforeAll(function(done) {
|
||||
NormalizedUnicodes = getNormalizedUnicodes();
|
||||
done();
|
||||
});
|
||||
|
||||
afterAll(function () {
|
||||
afterAll(function() {
|
||||
NormalizedUnicodes = null;
|
||||
});
|
||||
|
||||
it('should get normalized Unicode values for ligatures', function () {
|
||||
it("should get normalized Unicode values for ligatures", function() {
|
||||
// fi => f + i
|
||||
expect(NormalizedUnicodes['\uFB01']).toEqual('fi');
|
||||
expect(NormalizedUnicodes["\uFB01"]).toEqual("fi");
|
||||
// Arabic
|
||||
expect(NormalizedUnicodes['\u0675']).toEqual('\u0627\u0674');
|
||||
expect(NormalizedUnicodes["\u0675"]).toEqual("\u0627\u0674");
|
||||
});
|
||||
|
||||
it('should not normalize standard characters', function () {
|
||||
expect(NormalizedUnicodes['A']).toEqual(undefined);
|
||||
it("should not normalize standard characters", function() {
|
||||
expect(NormalizedUnicodes["A"]).toEqual(undefined);
|
||||
});
|
||||
});
|
||||
|
||||
describe('reverseIfRtl', function () {
|
||||
describe("reverseIfRtl", function() {
|
||||
var NormalizedUnicodes;
|
||||
|
||||
function getGlyphUnicode(char) {
|
||||
|
@ -118,30 +121,30 @@ describe('unicode', function () {
|
|||
return char;
|
||||
}
|
||||
|
||||
beforeAll(function (done) {
|
||||
beforeAll(function(done) {
|
||||
NormalizedUnicodes = getNormalizedUnicodes();
|
||||
done();
|
||||
});
|
||||
|
||||
afterAll(function () {
|
||||
afterAll(function() {
|
||||
NormalizedUnicodes = null;
|
||||
});
|
||||
|
||||
it('should not reverse LTR characters', function () {
|
||||
var A = getGlyphUnicode('A');
|
||||
expect(reverseIfRtl(A)).toEqual('A');
|
||||
it("should not reverse LTR characters", function() {
|
||||
var A = getGlyphUnicode("A");
|
||||
expect(reverseIfRtl(A)).toEqual("A");
|
||||
|
||||
var fi = getGlyphUnicode('\uFB01');
|
||||
expect(reverseIfRtl(fi)).toEqual('fi');
|
||||
var fi = getGlyphUnicode("\uFB01");
|
||||
expect(reverseIfRtl(fi)).toEqual("fi");
|
||||
});
|
||||
|
||||
it('should reverse RTL characters', function () {
|
||||
it("should reverse RTL characters", function() {
|
||||
// Hebrew (no-op, since it's not a combined character)
|
||||
var heAlef = getGlyphUnicode('\u05D0');
|
||||
expect(reverseIfRtl(heAlef)).toEqual('\u05D0');
|
||||
var heAlef = getGlyphUnicode("\u05D0");
|
||||
expect(reverseIfRtl(heAlef)).toEqual("\u05D0");
|
||||
// Arabic
|
||||
var arAlef = getGlyphUnicode('\u0675');
|
||||
expect(reverseIfRtl(arAlef)).toEqual('\u0674\u0627');
|
||||
var arAlef = getGlyphUnicode("\u0675");
|
||||
expect(reverseIfRtl(arAlef)).toEqual("\u0674\u0627");
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue